运用封装的方法和调用函数借以解答汽水瓶问题 摘要:解题思路:def f(water): num=0 while True: if water==2: num+=1 break …… 题解列表 2024年11月26日 0 点赞 0 评论 104 浏览 评分:9.9
使用递归完成解题,代码清晰可读 摘要:解题思路:使用函数递归,返回两个数值,分别是空水瓶数和已购水瓶数,当空水瓶数=2时,返回值加1(如题所述),<2时,直接返回代码结构如下:注意事项:在编写代码途中,需要注意适当增加变量保存水瓶数,如变…… 题解列表 2024年11月16日 0 点赞 0 评论 92 浏览 评分:9.9
无聊的星期六 摘要:标签个红色的,匪夷所思。解题思路:自己列一个表就知道了1=02=13=14=25=26=37=3参考代码:s=1 while s!=0: s=int(input()) if s=…… 题解列表 2024年04月19日 0 点赞 0 评论 92 浏览 评分:0.0
递归解法~~~~~~~~ 摘要:参考代码:def charge(n, summ): a = n // 3 b = n % 3 summ += a if (a + b) < 题解列表 2024年04月08日 0 点赞 0 评论 160 浏览 评分:6.0
汽水瓶(python代码) 摘要:解题思路:注意事项:参考代码while True: n=int(input()) if n==0: break c=0 while n>=3: c=…… 题解列表 2024年03月17日 0 点赞 0 评论 147 浏览 评分:0.0
汽水题:较为标准的Python解法,参考了ChatGpt。 摘要:解题思路:注意事项:参考代码:def calculate_max_sodas(n): if n < 2: return 0 total_sodas = 0 remain…… 题解列表 2023年06月24日 0 点赞 0 评论 200 浏览 评分:9.9
1072基础解法(Python) 摘要:解题思路:简单思路注意事项:了解divmod()函数的基础用法参考代码:import sysfor line in sys.stdin : bot = int(line) if bot =…… 题解列表 2023年05月24日 0 点赞 0 评论 76 浏览 评分:0.0
汽水瓶简单但是有点繁琐 摘要:解题思路:注意事项:参考代码:lis=list(map(int,input().split()))s=sum=0while min(lis)>0: lis.append(int(input())…… 题解列表 2023年03月24日 0 点赞 0 评论 202 浏览 评分:9.9
汽水瓶——三个空瓶换一瓶汽水 摘要:解题思路:稍微列一下,就很容易发现空瓶数与汽水数之间的关系注意事项:参考代码:for i in range(10): a = int(input()) if a == 0: …… 题解列表 2023年03月15日 0 点赞 0 评论 66 浏览 评分:0.0
汽水瓶(python代码) 摘要:def printf(x): total = 0 c = x//3 total = total+c d = x%3 x = d+c   题解列表 2023年01月16日 0 点赞 0 评论 66 浏览 评分:0.0