喝水问题
作者:互联网
今有一缸于院中,
缸中有水两百升
朝抱缸饮三十升
暮加白糖二十升
朝朝暮暮如此往
何时缸中无水声?
不考虑物理因素,无水声指没有任何水。
n=200 t=0 while True: if n==30: n=n-30 t+=1 break else: n=n-30+20 t+=1 print(n,t) print('第{}天水就没有了!'.format(t)) a=int(input('请输入水缸中原有水量:')) if a<30: print('输入的数值不符合题意,故无解!') else: print('第{}天水就没有了!'.format(int((a-30)/10+1)))
标签:喝水,20,int,升朝,30,水声,问题,print 来源: https://www.cnblogs.com/bcyczhhb/p/13501846.html