bijiahao


私信TA

用户名:2865gfv79349

访问量:34227

签 名:

等  级
排  名 171
经  验 6972
参赛次数 1
文章发表 52
年  龄 19
在职情况 学生
学  校 河南农业大学
专  业 信息与管理科学学院

  自我简介:

解题思路:





注意事项:   別忘了重置变量





参考代码:

import java.util.Scanner;


public class Main {

public static void main(String[] ahes) {

Scanner sc = new Scanner(System.in);

int bottle = sc.nextInt();

 

int count = 0; 

int empty ;

do{                    // 大循环

          while (bottle!=0)                 //小循环 

{

count += bottle/3;

empty = bottle % 3;

bottle = empty  + (bottle / 3);

if (bottle == 2) {

count += 1;

break;

}

if (bottle == 1)

break;

          

}   System.out.println(count);

count=0;empty=0;

bottle  = sc.nextInt();

}while(bottle!=0);


}

}


 

0.0分

4 人评分

  评论区

  • «
  • »