Run ID:154451

提交时间:2026-05-30 14:07:47

#include<bits/stdc++.h> using namespace std; int main() { double h = 100.0; // 落地10次,反弹10次 for(int i = 1; i <= 10; i++) { h /= 2; } // 保留6位小数输出 printf("%.6f", h); return 0; }