例子:小明将养的一缸金鱼分5次出售:第1次卖出全部的一半加1/2条;第2次卖出余下的三分之一加1/3条;第3次卖出余下的四分之一加1/4条; 第4次卖出余下的五分之一加1/5条;最后卖出余下的11条。问原来鱼缸中共有多少条鱼?答案是59条。
1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 n = 11 4 while True: 5 x = n 6 for i in range(2, 5+1): 7 x = x-(x/i+1/i) 8 if x == 11: 9 print(n) 10 ##### 11 x = n 12 for i in range(2, 5+1): 13 m = x/i+1/i 14 x = x - m 15 print(‘%d: mai-->%d shend-->%d‘ %(i-1, m, x)) 16 ##### 17 break 18 n = n + 1 执行结果:1: mai-->30 shend-->292: mai-->10 shend-->193: mai-->5 shend-->144: mai-->3 shend-->11
原文地址:https://www.cnblogs.com/Leonardo-li/p/9096302.html
时间: 2024-10-27 09:40:58