Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105140 唐诗阳 13自由落体 C++ Wrong Answer 1 MS 268 KB 347 2025-01-12 15:09:44

Tests(0/1):


Code:

#include<iostream> #include<cstdio> //scanf()\printf() #include<cstring> #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ double h=100,m; for(int i=10;i>0;i--){ m+=h; h/=2; m+=h; } printf("%.6lf",h); cout<<" "; printf("%.6lf",m); }


Run Info:

------Input------
0
------Answer-----
299.804688 0.097656
------Your output-----
0.097656 299.707031