我用eclipse写了一个a + b 的程序,在Console输入数据,但是不显示结果,非要点Terminate后才显示结果

我用eclipse写了一个a + b 的程序,在Console输入数据,但是不显示结果,非要点Terminate后才显示结果,为什么
怎么样才能离开就显示结果。
#include <stdio.h>

int main()
{
int a, b;
while(scanf("%d%d", &a, &b) != EOF)
{
printf("%d\n", a + b);
}
return 0;
}

因为没看到你的代码,所以只能猜,可能是你的终止条件有问题,不然程序不会一直循环而不终止
温馨提示:内容为网友见解,仅供参考
第1个回答  2009-03-19
代码!
第2个回答  2009-03-19
改改吧 把scanf拿出来别放在while里面

Warning: Invalid argument supplied for foreach() in /www/wwwroot/www.t2y.org3v3b34/skin/templets/default/contents.html on line 47
相似回答
大家正在搜