#include<stdio.h>
void main(void)
{
int a, b, c;
printf("Enter your points:\n");
scanf("%d%d", &a, &b);
c=a+b;
printf("=%d", c);
system("pause");
}
我也是個新手~
想問一下
在dev c時可以跑出來
為什麼這裡說是錯的呢~?
#include
void main(void)
{
int a, b, c;
printf("Enter your points:\n");
scanf("%d%d", &a, &b);
c=a+b;
printf("=%d", c);
system("pause");
}
我也是個新手~
想問一下
在dev c時可以跑出來
為什麼這裡說是錯的呢~?
我也是新手~
但是還是回答一下好了...
請按照它的格式輸出...
也就是那些printf("Enter your points:\n");都要拿掉...
還有你這樣只能應付一筆測資的說...
爬一下前面的文吧...
#include<stdio.h>
void main(void)
{
int a, b, c;
while(scanf("%d%d", &a, &b)==2)
{
c=a+b;
printf("%d\n", c);
}
}
這樣應該可以了
有沒有人教一下Pascal怎麼寫...