程序无问题,但无法运行
自己写了一个小程序,系统总会报错程序经个人多次检验,没有问题啊
但就是无法运行
错误报告如下:
collect2.exe:error:Id returned 1 exit status -gcc
程序如下:
#include <stdio.h>
#include <stdlib.h>
int main( )
{
int a,b,c;
a=9;
b=3;
c=a+b;
printf("%d+%d=%d\n",a,b,c);
c=a-b;
printf("%d-%d=%d\n",a,b,c);
c=a*b;
printf("%d*%d=%d\n",a,b,c);
c=a/b;
printf("%d/%d=%d\n",a,b,c);
ststem("pause");
return 0;
} //ststem("pause");
system("pause");
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a, b, c;
a = 9;
b = 3;
c = a + b;
printf("%d+%d=%d\n", a, b, c);
c = a - b;
printf("%d-%d=%d\n", a, b, c);
c = a * b;
printf("%d*%d=%d\n", a, b, c);
c = a / b;
printf("%d/%d=%d\n", a, b, c);
//ststem("pause");
system("pause");
return 0;
}
ststem这个改成system 人造人 发表于 2018-3-18 22:38
//ststem("pause");
system("pause");
这个。。是发帖时弄错了。。
更正后仍然是原情况。。。
怎么解决啊。。是不是我的电脑有问题。。。 C22 发表于 2018-3-18 23:07
这个。。是发帖时弄错了。。
更正后仍然是原情况。。。
怎么解决啊。。是不是我的电脑有问题。。。
你是如何编译的?
发截图
页:
[1]