题解 1072: 汽水瓶

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

使用递归完成解题,代码清晰可读

摘要:解题思路:使用函数递归,返回两个数值,分别是空水瓶数和已购水瓶数,当空水瓶数=2时,返回值加1(如题所述),<2时,直接返回代码结构如下:注意事项:在编写代码途中,需要注意适当增加变量保存水瓶数,如变……

无聊的星期六

摘要:标签个红色的,匪夷所思。解题思路:自己列一个表就知道了1=02=13=14=25=26=37=3参考代码:s=1 while s!=0:     s=int(input())     if s=……

递归解法~~~~~~~~

摘要:参考代码:def charge(n, summ):     a = n // 3     b = n % 3     summ += a     if (a + b) <

汽水瓶(python代码)

摘要:解题思路:注意事项:参考代码while True:    n=int(input())    if n==0:        break    c=0    while n>=3:        c=……

1072基础解法(Python)

摘要:解题思路:简单思路注意事项:了解divmod()函数的基础用法参考代码:import sysfor line in sys.stdin :    bot = int(line)    if bot =……

汽水瓶简单但是有点繁琐

摘要:解题思路:注意事项:参考代码:lis=list(map(int,input().split()))s=sum=0while min(lis)>0:    lis.append(int(input())……

汽水瓶——三个空瓶换一瓶汽水

摘要:解题思路:稍微列一下,就很容易发现空瓶数与汽水数之间的关系注意事项:参考代码:for i in range(10):    a = int(input())    if a == 0:        ……

汽水瓶(python代码)

摘要:def printf(x):     total = 0     c = x//3     total = total+c     d = x%3     x = d+c