Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4613 | 李伟和 | A+B 输入输出练习IV | C++ | Compile Error | 0 MS | 0 KB | 299 | 2024-08-24 14:56:14 |
#include <iostream> using namespace std; int main() { int n; int sum=0 while(cin>>n){ if(n==0){ break; } //sum初始化为0 for(int i=0;i<n;i++){ int num=0; cin>>num; sum+=num } cout<<sum<<endl; } return 0; }
Main.cc: In function 'int main()': Main.cc:6:4: error: expected ',' or ';' before 'while' while(cin>>n){ ^ Main.cc:4:8: warning: unused variable 'n' [-Wunused-variable] int n; ^ Main.cc:5:8: warning: unused variable 'sum' [-Wunused-variable] int sum=0 ^ Main.cc:19:1: error: expected '}' at end of input } ^