题解 1072: 汽水瓶

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

筛选

汽水瓶 (C语言代码)

摘要:解题思路:注意事项:每次剩余的瓶子是换的汽水数加上余下空瓶子参考代码:#include<stdio.h>int main() { int bottle; int water = 0; scanf("%……

用小学生思路解决此题

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

c++循环解法

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring>using namespace std;int main(){ int n=0,sum=0,s=0……

汽水瓶 (C语言代码)

摘要:解题思路:规律注意我奇偶数情况合并了注意事项:参考代码:#include<stdio.h> int main(){       int n;      do  {              scanf……

循环控制,汽水瓶

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int test1(int n) {     return n / 3;}int test2(int n) {         retu……

求汽水瓶的数量

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int number(int emptyglass){    /*求解空汽水瓶能换多少瓶水*/    int fullglass,all……

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

摘要:有三个瓶子--->1 有5个瓶子---->1+1 有10个瓶子---->3+1+1 ```c #include int func(int n) { if(n==2) { ……

汽水瓶 (C语言代码)

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