C语言编的简单程序为什呢在桌面上运行到最後一步时,程序突然关闭 10
2个回答
展开全部
这与你的编程环境有关,Visual Studio会出现这种情况。
这是因为程序已经运行完毕所以自动关闭了,有的编程软件会帮你暂停比如VC++(记得是)以方便观察程序运行情况,有些则需要你自己暂停。
一般的处理方法是用system("pause");暂停(需要头文件#include<stdlib.h>)
也可以使用其他等待用户输入的语句停止,比如getchar()之类,用getchar()时如果你前面有输入操作的话需要两个getchar()才能暂停。
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hello world");
system("pause");
return 0;
}
或者
#include <stdio.h>
int main()
{
printf("hello world");
getchar();
return 0;
}
这两种是比较常用的暂停方式
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询