-
个人简介
#include<iostream> using namespace std; long long fc(int a){ long long b=1; for(int i=1;i<=a;i++){ b=b*i; } return b; } int main(){ int a,n; double t=0; cin>>a>>n; t=a; for(int i=1;i<=n;i++){ t+=(t*0.001); } printf("%.4f",t); return 0; } -
通过的题目
-
最近活动
-
最近编写的题解
This person is lazy and didn't write any solutions.
题目标签
- 系统测试
- 1