A + B Problem

 每行有兩個整數,計算它們的和。 判斷結尾應該是比較難一點的 #include <iostream> using namespace std; int main() { int a,b; while(cin>>a>>b){ cout<<a+b<<endl; } return 0; }
相關文章
相關標籤/搜索