Run ID:120145
提交时间:2025-05-24 11:13:36
#include <iostream> using namespace std; int main() { double height = 100.0; for (int i = 1; i <= 9; i++) { height /= 2; } cout << fixed << setprecision(6) << height / 2 << endl; return 0; }