题解 1072: 汽水瓶

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

筛选

循环计算,注意细节

摘要:解题思路:1、一直调用函数本身计算,all这个变量用来计算总值,他的初始值总是0。2、注意喝了多少瓶和产生的多少空瓶,下一次调用的空瓶数应该是n/3加上n%3,而本次喝了的瓶数应该是n/3。3、注意边……

while循环的简单使用

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int x(int n) {    int sum = 0;    if (n < 2) return 0;     while (n……

最简单,没有之一

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<math.h>using namespace std;int main(){ in……

汽水瓶 (C语言代码)

摘要:解题思路:构造一个函数,输入处理空瓶数,返回能喝多少瓶参考代码:#include <stdio.h>int chuli(int n){     int shang=0, yu=0;          ……

汽水瓶-题解(Java代码)递归方法

摘要:### 这道题其实搞清逻辑很容易做出来,使用递归比较简单。参考代码如下,注释也写的比较详细了 ```java import java.util.Scanner; public class M……

汽水瓶 (C语言代码)

摘要:解题思路:看题会绕晕,多写几组数据就会发现,其他他绕了一圈,就是看看输入的这个数是2的多少倍。注意事项:参考代码:#include<stdio.h>int main(void){int i,ping,……

汽水瓶题解

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>/* run this program using the console pauser o……

Work out the bottle problem

摘要:解题思路:注意题目给的信息,空杯子是3的倍数,就对获得的空杯子进行取余直到为2或0注意事项:时间的开销,当小于2时直接退出参考代码:#include<stdio.h>int main(){ int n……

汽水瓶 (C语言代码)

摘要:解题思路:非常传统的直接过程注意事项:参考代码:#include<stdio.h>int main(){    int m;    int n[100];    int i;    for(i=0;i……

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

摘要:题目: 有这样一道智力题:“某商店规定:三个空汽水瓶可以换一瓶汽水。小张手上有十个空汽水瓶,她最多可以换多少瓶汽水喝?”答案是5瓶,方法如下:先用9个空瓶子换3瓶汽水,喝掉3瓶满的,喝完以后4个空瓶……