Run ID:148763
提交时间:2026-02-28 19:12:53
#include <iostream> #include <iomanip> using namespace std; int main() { double height = 100.0; for (int i = 0; i < 10; i++) { height = height / 2.0; } cout << fixed << setprecision(6) << height << endl; return 0; }