c++2010运行闪退
如题,Ctrl+f5也会一闪而过,是什么原因呢,请求大佬!! 代码? 建议使用 Dev - C++。Dev - C++ 下载地址:https://pc.qq.com/detail/16/detail_163136.html 风过无痕1989 发表于 2020-8-1 12:51代码?
#include <stdio.h>
void main()
{
int a,b,c,d;
unsigned u;
a=12;
b=-24;
u=10;
c=a+u;
d=b+u;
printf("a+u=%d,b+u=%d\n",c,d);
} zltzlt 发表于 2020-8-1 12:57
建议使用 Dev - C++。Dev - C++ 下载地址:https://pc.qq.com/detail/16/detail_163136.html
谢谢!我去试试 头文件加入
#include<stdlib.h>
主函数结束(return)前加入
system("pause");
#include <stdio.h>
#include<stdlib.h>
void main()
{
int a,b,c,d;
unsigned u;
a=12;
b=-24;
u=10;
c=a+u;
d=b+u;
printf("a+u=%d,b+u=%d\n",c,d);
system("pause");
}
页:
[1]