您的位置:首页 > 科技 > 能源 > 邳州网站_化妆品网站主页设计_最近国际时事热点事件_百度权重排名

邳州网站_化妆品网站主页设计_最近国际时事热点事件_百度权重排名

2025/1/8 0:43:43 来源:https://blog.csdn.net/avenccssddnn/article/details/144952300  浏览:    关键词:邳州网站_化妆品网站主页设计_最近国际时事热点事件_百度权重排名
邳州网站_化妆品网站主页设计_最近国际时事热点事件_百度权重排名

1090 A+B for Input-Output Practice (II) :题目有N个输入组,接下来依次给出N个输入组数据

Problem Description
Your task is to Calculate a + b.Input
Input contains an integer N in the first line, and then N lines follow. Each line consists of a pair of integers a and b, separated by a space, one pair of integers per line.Output
For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.Sample Input
2
1 5
10 20Sample Output
6
30
// ---------c----------
#include<cstdio>
int main(){int n,a,b;scanf("%d",&n);while( n-- > 0 ){scanf("%d %d",&a,&b);printf("%d\n",a+b);}return 0;
}
//cpp
#include<iostream>
using namespace std;
int main(){int n,a,b;cin >> n;while(n -- > 0){cin >> a >> b;cout << a+b << endl;}return 0;
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com