题解 1072: 汽水瓶

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

筛选

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

摘要:解题思路:注意事项:参考代码:#includeint main(){    int n;    while( scanf("%d",&n),n!=0){         printf( "%d\n",……

汽水瓶 简单代码 C++实现

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int n; //n表示空瓶数量    while(cin>>……
优质题解

汽水瓶 (C语言代码)递归方式求解 思路清晰

摘要:经典的一道递归题!解题思路如下:假设n为最初始的空饮料瓶数,sum为已经喝的饮料瓶数。则有如下三种情况:1) 当 n <= 1 时,就不能兑换了,直接 return sum;2) 当 n == 2 时……

迭代(C语言代码)

摘要:其实大家如果把所有结果拉出来做个统计的话……会发现其实将总数除以2就行了~但我总觉得这样不是十分的符合题意(个人还是喜欢把整个过程模拟一下) 解题思路:在main函数中,先完成输入,在ca……

python——汽水瓶

摘要:def aa(a):     sum = 0     while a > 1:         s = a%3            

汽水瓶(java)

摘要:解题思路:注意事项:参考代码: import java.util.Scanner;         public class Main{ public static void main……