Run ID:123843

提交时间:2025-07-10 14:16:56

#include <bits/stdc++.h> using namespace std; int main (){ double h=100; for(int i=1;i<=10;i++){ h = h/2; } printf("%.6lf",h); return 0; }