Run ID:154325
提交时间:2026-05-30 10:25:05
#include<bits/stdc++.h> using namespace std; int main() { double x=100; for(int i=1;i<=10;i++) { x=x/2; } print("%.6f",x) return 0; }