Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129955 周泽洋 12自由落体 C++ Wrong Answer 1 MS 260 KB 255 2025-09-06 19:38:50

Tests(0/1):


Code:

#include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int main(){ int i; double h=100; for(i=1;i<=10;i++){ h=h/2; } printf("%.2lf",h); return 0; }


Run Info:

------Input------
3 12
------Answer-----
0.097656
------Your output-----
0.10