题解 1072: 汽水瓶

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

筛选

无聊的星期六

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

汽水瓶 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,i=0,a[10];    while(scanf("%d",&x) && x!=0 && i……

汽水瓶(python代码)

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

汽水瓶【递归】

摘要:```java //汽水瓶 //这时候剩2个空瓶子。然后你让老板先借给你一瓶汽水,喝掉这瓶满的,喝完以后用3个空瓶子换一瓶满的还给老板 import java.util.Scanner; pu……

汽水瓶-题解(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int a,n,m;     while(scanf("%d",&a)){         if (a……

1072: 汽水瓶-Java(递归实现)

摘要:解题思路:递归实现,具体思路看代码。参考代码:import java.util.Scanner; public class Main { public static void main(St……