Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103232 | 胡思齐 | 04圆的面积 | C++ | Compile Error | 0 MS | 0 KB | 150 | 2024-12-28 14:45:20 |
#include <iostream> using namespace std; int main() { double r,s; cin>>r s=3.14*r*r; cout<<s<<endl; return 0; }
Main.cc: In function 'int main()': Main.cc:7:5: error: expected ';' before 's' s=3.14*r*r; ^