題目連結 https://zerojudge.tw/ShowProblem?problemid=a002。
此題是練習整數的加法運算,底下用C++、Python做練習。
C++程式碼:
#include <iostream>
using namespace std;
int main() {
int a;
while(cin >> a){
int b;
b = a;
cin >> a;
b += a;
cout << b << endl;
}
return 0;
}
Python程式碼:
import sys
for s in sys.stdin:
num = list(map(int,s.split()))
print(num[0]+num[1])
沒有留言:
張貼留言