你可以在代码中加一个等待用户输入字符的函数,只要你没有按键就不会关掉。
例如:加getchar()
#include
#include
int main(void)
{
int cows,legs;
printf("How many cow legs did you count?\n");
scanf("%d",&legs);
cows = legs / 4;
printf("That implies there are %d cows.\n",cows);
getchar();//等待用户从终端输入一个字符
return 0;
}
可以运行,你再试一下,如果不行,那就是系统问题,试试用别的
在return之前加上
system("pause");