卖金鱼
源代码
#include <iostream>
using namespace std;
int main(){
int x=11;
//1 x/2 +1/2
//2 x/3+1/3
//3 x/4+1/4
//4 x/5+1/5 最后剩下11条
/*因为金鱼只能整条出售 所以,x只能是奇数
(x-x/2-1/2)-((x-x/2-1/2)/3-1/3)-......=11*/
//逆运算
for(int i=4;i>=1;i--){
x=(x+1.0/(i+1))*((i+1.0)/i);
}
cout<<x<<endl;
}
答案给出的另一种
标签:11,1.0,int,金鱼,17th,源代码 From: https://www.cnblogs.com/wcy1111/p/17391289.html