1 条题解
-
0lichengjun LV 10 @ 2023-2-9 19:39:14
不知道为什么我用int不行,用double就可以了,但输出还是整数
#include<iostream> #include<iomanip> #include<stdio.h> #include<math.h> #include<string> #include<cstring> using namespace std; int main(){ double n,k; cin>>n>>k; while(k!=1){ n=(k*n+1)/(k-1); k--; } cout<<n; return 0; }
- 1
信息
- ID
- 900
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 8
- 标签
- 递交数
- 183
- 已通过
- 29
- 上传者