先说明一下,这是一篇水帖。
#include <bits/stdc++.h> using namespace std; int main() { int a,b=0; while(cin>>a) { b+=a; } cout<<b; }