这句程序怎么解决?
C语言如何暂停屏幕,比如hello Word这句程序:#include<stdio.h>
main()
}
printf("hello word");
}
#include<stdio.h>
#include <stdlib.h>
main()
{
printf("hello word");
system("pause");
} printf语句后面加 getchar(); 本帖最后由 火炫龙飞 于 2014-8-1 10:55 编辑
#include<stdio.h>
main()
{
printf("hello word\n");
}
把想输出的末尾要加上转义字符:\n,其功能是回车换行,你试试就知道了。
实践出真理! :big只有二楼的回答靠谱,嘿 3楼正解:lol: 加上 getchar()
getchar() 回车就行了
或者是看你用的什么编译器 Dev cpp
可用 getch() 按任意键要退出 二楼已经完美解决了 沉默默 发表于 2014-8-1 09:04
printf语句后面加 getchar();
怎么加,能不能写一遍让我看看{:7_155:} 火炫龙飞 发表于 2014-8-1 10:53
#include
main()
{
他的意思是输出helloworld后让屏幕暂停 2764315761 发表于 2014-8-1 13:40
怎么加,能不能写一遍让我看看
# include <stdio.h>
int main(void)
{
printf("hello world\n");
getchar();
return 0;
} 表示二楼就可以~~~ 1.getchar() 最简单
2.getch() 要加上 #include "conio.h"
3.system("pause") 要加上#include "stdlib.h"
方法很多了楼主自己看着哪个简单哪个用吧 返回语句前面加 中断system("pause"); 沉默默 发表于 2014-8-2 00:36
# include
int main(void)
谢谢{:7_155:} LoveYang 发表于 2014-8-1 07:40
#include
#include
main()
为什么你这句程序不加 #include<stdlib.h>也可以,是不是编译器的问题?{:7_173:} 沉默默 发表于 2014-8-2 00:36
# include
int main(void)
#include "conio.h"
这句程序不需要加#include "conio.h"
吗?{:7_166:} 2764315761 发表于 2014-8-4 13:34
#include "conio.h"
这句程序不需要加#include "conio.h"
吗?
加这个头文件干嘛,printf函数在 stdio.h 这个头文件里,只加这个就行了 沉默默 发表于 2014-8-1 09:04
printf语句后面加 getchar();
赞! 2764315761 发表于 2014-8-4 13:32
为什么你这句程序不加 #include也可以,是不是编译器的问题?
我用的是VC6.0,不加不行,不知道你用的什么编译器了
页:
[1]