HDU-1000 A+B Problm (语法练习题)

A+B Problem

A + B Problem
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 832597 Accepted Submission(s): 251888

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

Author
HDOJ

问题简述:

  输入两个数,输出它们的和。

问题分析:

  读取输入,输出结果。

程序说明:

  使用两个int类型的数存储输入,直接输出和。使用c++标准输入输出流。

程序实现:

#include<iostream>
using namespace std;

int main()
{
    int a,b;
    while(cin>>a>>b)
    {
        cout<<a+b<<endl;
    }
}

猜你喜欢

转载自blog.csdn.net/weixin_43939327/article/details/84845115