水题 HDU-1000 A + B Problem

题目链接:杭电1000
HDU-1000 A + B Problem
题目大意:计算a+b

解法思路:算就行了 多样例输入

代码块:

#include<iostream>

using namespace std;

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

相关文章:

  • 2021-09-25
  • 2021-06-14
  • 2022-12-23
  • 2022-03-05
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
  • 2022-02-04
猜你喜欢
  • 2021-07-22
  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2021-09-04
  • 2021-06-02
相关资源
相似解决方案