hdu 1090 A+B for Input-Output Practice (II)
作者:互联网
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,1090,int,Practice,II,Input,Output 来源: https://www.cnblogs.com/pcdl/p/12232192.html