求助c语言的a+b问题

2024年12月04日 15:13
有4个网友回答
网友(1):

The input will consist of a series of pairs of integers a and b,separated by a space, one pair of integers per line.
他要你的程序能够一次输入很多对整数,每行一对,算出来之后,再每行一个结果显示出来,你的程序只处理一对数字

网友(2):

#include
void main()
{
int a,b;
scanf("%d%d",&a,&b);
while(a||b)
{
printf("%d\n",a+b);
scanf("%d%d",&a,&b);
}
}
注意SCANF的两个%d之间没有空格
while循环实现处理多组数据,有不明白的可以继续问

网友(3):

英语不好就不要这么牛逼,还看英文教材,哥也没看懂题目是啥,幸亏楼上知道,晕死
#include
void main()
{
int n,a[100],b[100];
printf("how many pairs of num do you want to enter:");
scanf("%d",&n);
printf("please enter:\n");
for(int i=0;i scanf("%d %d",&a[i],&b[i]);
printf("\nthe result:\n");
for(int k=0;k printf("%d+%d=%d\n",a[k],b[k],a[k]+b[k]);
}

网友(4):

支持aaasuper,没问题。。
你的答案应该是用程序来检测吧,zzyhuda的太人性化了哈~~