题目链接:点击打开链接
Problem Description
Calculate
A + B.
Input
Each line will contain two integers
A and
B. Process to end of file.
Output
For each case, output
A + B in one line.
Sample Input
1 1
Sample Output
2
我的C++代码:
#include<iostream>
using namespace std;
int main()
{
int a = 0, b = 0;
while (cin >> a >> b)
{
cout << a + b<<endl;
}
//system("pause");
return 0;
}
本文介绍了一个简单的C++程序,用于解决输入两个整数A和B后输出它们之和的问题。通过不断读取输入直到文件结束,该程序能够处理多组数据。
2017

被折叠的 条评论
为什么被折叠?



