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

时间:2024-11-15 11:04:42
import .*;
public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner();
        while(()){
            int n=();//空汽水瓶数
            int count=0;//能喝汽水瓶数
            if(n>0){
                while(n>1){
                    count+=n/3;
                    n=n%3+n/3;
                    if(n==2){
                        n++;
                    }
                }
                (count);
            }
        }
        ();
    }
}