1 若用的是VC++,按Ctrl+F5运行试试,结束后会暂停。
2 加getchar();
#include "stdio.h"
int main()
{
printf("Hello World!\n");
getchar(); //若是TC,换为getch();
return 0;
}
加上头文件#include
getch();语句意思是,要从键盘上接受一个字符但是不在屏幕上显示出来!
如果没有结果!屏幕就不会自动退出。。。
有两种方法
1:
#include
using namespace std;
int main()
{
cout<<"hello word!"<
return 0;
}
2:
运行的时候按ctrl+f5而不是只按f5。