Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129837 韩立鹏 计算球弹跳高度 C++ 通过 100 0 MS 248 KB 197 2024-01-27 11:38:58

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main() { double h1,h,s=0; cin>>h1; h=h1; for(int i=1;i<=10;i++){ s=s+2*h; h=h/2; } printf("%.3f \n%.3f",s-h1,h); return 0; }


测评信息: