提交时间:2025-10-24 14:47:35
运行 ID: 71095
#include <bits/stdc++.h> using namespace std; int main() { int b; double k,x; cin >> k>>b; for(int i = 1;i<=b;i++) { x=k*1.01; } cout << fixed<<setprecision(4)<<x; return 0; }