Zerojudge 基礎題庫a002 簡易加法
這題簡單,不多做說明。
記得重複測資,詳細請參考基礎題庫a001的範例程式碼。
程式碼:
1 2 3 4 5 6 7 8 9 10 11 12 | #include <iostream> using namespace std; int main() { //input two number; int inputA,inputB; while(cin >> inputA >> inputB) { cout << inputA + inputB << endl; } } |
留言
張貼留言