28人买可乐喝,3个可乐瓶盖可以换一瓶可乐,那么要买多少瓶可乐,够28人喝?假如是50人,又需要买多少瓶可乐?
- public static void main(String[] args){
- CountKele(28);
- }
- public static void CountKele(int number){//此处传入人数
- int kele = 0;//定义一个变量,来统计瓶盖的数量。
- int count = 0;//定义一个变量,来统计买的可乐的数量。
- for(int i=1; i<number; i++){
- if(kele == 3){
- kele = 1;
- }
- else{
- kele ++;
- count ++;
- }
- }
- System.out.print(number+"人喝可乐,需要购买"+count+"瓶可乐。");
- }
复制代码 |
|