Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94774 | 何松羽 | 13求7个数的平均数 | C++ | Compile Error | 0 MS | 0 KB | 179 | 2024-10-26 13:16:03 |
#include<bits/stdc++.h> using namespace std; int main(){ int i=0,s; while(i<7){ i++; cin>>i; i=i+s; } float avg=sum/7.0; cout<<avg; return 0; }
Main.cc: In function 'int main()': Main.cc:12:13: error: 'sum' was not declared in this scope float avg=sum/7.0; ^