hdu 1090A+B for Input-Output Practice (II)
英文版题目:
中文版题目
简单的A+B问题
#include<iostream> using namespace std; int main() { int a, b; int T; cin >> T; while (T--) { cin >> a >> b; cout << a + b << endl; } system("pause"); return 0; }
运行结果:
hdu 1090A+B for Input-Output Practice (II)
英文版题目:
中文版题目
简单的A+B问题
#include<iostream> using namespace std; int main() { int a, b; int T; cin >> T; while (T--) { cin >> a >> b; cout << a + b << endl; } system("pause"); return 0; }
运行结果: