A + B Problem 【HDU - 1000】
阿新 • • 發佈:2018-12-09
A + B Problem 【HDU - 1000】
題目
Calculate A + B.
Time limit | Memory limit | OS | Source |
---|---|---|---|
1000 ms | 32768 kB | Windows | - |
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.
Example
Input | Output |
---|---|
1 1 | 2 |
1 5 | 6 |
問題連結: HDU - 1000
問題描述
計算A + B的值,並輸入多行資料
問題分析
行吧,問題短,但是不一定能AC
遇到多組輸入的情況
程式碼都差不多是這樣寫的
將輸入作為判斷條件
AC通過的CPP程式碼如下
#include<iostream>
using namespace std;
int main()
{
int a,b;
while (cin >> a>> b)
{
cout << a + b << endl;
}
return 0;
}