标签:错误 output body cst ane bre col head ret
1 6 -9 6 5
9
解析:看到题目瞬间,我想的是定义一个数组来放这些输入的数,然后这是错误的,把简单的问题复杂化。正确的是一个数一个数的计算,输入一个数就加上一个数,直到按下回车,代表输入结束,输出结果。
附上代码:
#include<iostream> #include<cstdio> using namespace std; int main() { int ans=0; int a; char b; while(scanf("%d%c",&a,&b)!=EOF) { ans+=a; if(b==‘\n‘)//判断是否按下回车 break; } printf("%d",ans); return 0; }
标签:错误 output body cst ane bre col head ret
原文地址:https://www.cnblogs.com/chen-kaige/p/14747291.html