Run ID:103510

提交时间:2024-12-28 18:07:26

#include <bits/stdc++.h> using namespace std; int main(){ double h=100; int i; for(i=1;i<=10;i++){ h=h/2.0; } cout<<fixed<<setprecision(6)<<h<<endl; }