提交时间:2025-10-24 14:49:48
运行 ID: 71101
#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.1; } cout << fixed<<setprecision(4)<<x; return 0; }