Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92036 | 石水生 | 12自由落体 | C++ | Wrong Answer | 0 MS | 264 KB | 163 | 2024-09-28 09:59:55 |
#include <iostream> using namespace std; int main(){ int cout=0; double i; for(i=100;cout<=10;){ i/=2; cout++; } printf("%.6f",i); return 0; }
------Input------
3 12
------Answer-----
0.097656
------Your output-----
0.048828