Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
47096 zhangrongbao2023 【例39.2】 球弹跳高度的计算 C++ Compile Error 0 MS 0 KB 295 2024-05-12 14:27:15

Tests(0/0):


#include<iostream> using namespace std; int main() { double h0, i, s, h; while (cin >> h0) { s = 0; h = 0; for (i = 1; i <= 11; i=i++) s += h0 + h; h = h0 * 0.5; h0 = h; } cout << s << ' ' << h<<endl; } return 0; }


Judgement Protocol: