HDU-1000 A + B Problem

水題 HDU-1000 A + B Problem 題目鏈接:杭電1000 題目大意:計算a+b 解法思路:算就行了 多樣例輸入 代碼塊: #include<iostream> using namespace std; int main() { int a, b; while (cin >> a >> b) { cout << a + b << endl; } return 0;
相關文章
相關標籤/搜索