| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123857 | 陈华仁星 | 12自由落体 | C++ | Compile Error | 0 MS | 0 KB | 175 | 2025-07-10 14:19:34 |
#include <cstdio> using namespace std; int main() { dounle h=100; for(int i=1;i<=10;i++) { h=h/2; } printf("%,6lf",h); return 0; }
Main.cc: In function 'int main()':
Main.cc:6:5: error: 'dounle' was not declared in this scope
dounle h=100;
^
Main.cc:9:9: error: 'h' was not declared in this scope
h=h/2;
^
Main.cc:11:20: error: 'h' was not declared in this scope
printf("%,6lf",h);
^