用DEV跑都可以
可是丟上來就一直錯...
(我懷疑可能是我誤解題意(?)因為a001也有這種情況ˊˋ)
請高手幫忙 謝謝~~~
#include <stdio.h>
#include <stdlib.h>
int main()
{
for(;;)
{
int x=0;
int y=0;
scanf("%d",&x);
scanf("%d",&y);
printf("%d\n",x+y);
}
return 0;
}
P.S.不是程式結束都要加system("PAUSE");嗎
為什麼每次加上去他都顯示 不允許使用的函式???
用DEV跑都可以
可是丟上來就一直錯...
(我懷疑可能是我誤解題意(?)因為a001也有這種情況ˊˋ)
請高手幫忙 謝謝~~~
#include
#include
int main()
{
int x=0;
int y=0;
while(scanf("%d %d",&x,&y)!=EOF)
printf("%d\n",x+y);
return 0;
}
P.S.不是程式結束都要加system("PAUSE");嗎
為什麼每次加上去他都顯示 不允許使用的函式???
無窮迴圈,執行沒有結束
加個!EOF
用DEV跑都可以
可是丟上來就一直錯...
(我懷疑可能是我誤解題意(?)因為a001也有這種情況ˊˋ)
請高手幫忙 謝謝~~~
#include
#include
int main()
{
int x=0;
int y=0;
while(scanf("%d %d",&x,&y)!=EOF)
printf("%d\n",x+y);
return 0;
}
P.S.不是程式結束都要加system("PAUSE");嗎
為什麼每次加上去他都顯示 不允許使用的函式???
無窮迴圈,執行沒有結束
加個!EOF
不好意思還是不太懂ˊˇˋ
嗯...執行沒有結束是什麼意思?
還有 !EOF是什麼?
for(;;)}
的形式不就是無窮迴圈了嗎?
再次謝謝幫我解答的人:)