4 条题解
- 1
信息
- ID
- 443
- 时间
- 1000ms
- 内存
- 32MiB
- 难度
- 2
- 标签
- 递交数
- 113
- 已通过
- 72
- 上传者
不用循环
#include<bits/stdc++.h>
using namespace std;
int main()
{
double x,n;
cin>>x>>n;
x*=pow(1.001,n);
cout<<fixed<<setprecision(4)<<x;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
double x;
cin >> x >> n;
for (int i = 1; i <= n; i++)
{
x += x * 0.001;
}
cout << fixed << setprecision(4) << x;
return 0;
}