题解列表

筛选

汽水瓶-题解(Python代码)

摘要:解题思路:注意事项:参考代码:while(1):    n=int(input())    if n==0:        break    else:        a=int(n/2)    pr……