3WA求解
查看原帖
3WA求解
1622400
LzraSirrr楼主2025/1/13 15:34
#include<bits/stdc++.h>
using namespace std;
int main(){
	double x,n;
	cin >> x >> n;
	for(int i = 1;i <=n;i++){
		x = x*1.001;
	}
	cout << x;
	return 0;
}
2025/1/13 15:34
加载中...