Run ID:154326
提交时间:2026-05-30 10:27:21
#include<bits/stdc++.h> using namespace std; int main() { double x=100; for(int i=1;i<=10;i++) { x=x/2; } cout<<fixed<<setprecision(6)<<x<<endl; return 0; }