题解 1072: 汽水瓶

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

筛选

汽水瓶 (C语言代码)

摘要:解题思路:注意事项:参考代码:/* 可以这么理解:  1个空瓶子 = 喝到0瓶,并余下1个空瓶子   2个空瓶子 = 喝到1瓶,并余下0个空瓶子 所以有这个规律  f(1)=0...1 ……

汽水瓶 (Java代码)

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

1072: 汽水瓶

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int tt(int w){    int m,n,x,y,sum=0;    m……

汽水瓶 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,num=0,leave=0,sum=0; while(scanf("%d",&n)!=EOF) { ……

最简单的解法

摘要:解题思路:一般做题总是会想着先换完一轮之后再换第二轮,其实可以换种思路,每次只换一瓶,喝完再换注意事项:最后剩俩瓶子时也可以换一瓶参考代码:#include<iostream>using namesp……

汽水瓶 (Java代码)

摘要:解题思路:只要有瓶子就全部兑掉,还有就是两瓶等于多一瓶注意事项:参考代码:import java.util.*;public class Main { public static void main(……

最简单,没有之一

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

题解 1072: 汽水瓶

摘要:解题思路:以二换一,当小于二时换不了,大于二时分解为n个二。问题求:换过来的汽水瓶。参考代码:#include <stdio.h>#include <stdlib.h>int main(){     ……

Work out the bottle problem

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