提交时间:2025-12-19 15:15:31

运行 ID: 76504

#include <iostream> using namespace std; int main() { double h; cin >> h; double total_distance = h; // 第一次下落 double current_height = h; // 计算第2到第10次落地 for (int i = 2; i <= 10; i++) { current_height /= 2; // 反弹高度 total_distance += 2 * current_height; // 反弹+下落 } double tenth_bounce = current_height / 2; // 第10次反弹高度 cout <<"2"; return 0; }