一学习就会困的狗


私信TA

用户名:dotcpp0615060

访问量:105

签 名:

等  级
排  名 31921
经  验 479
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 黄河科技学院
专  业

  自我简介:

TA的其他文章

解题思路:打擂台

注意事项: 注意判断

参考代码:

public static void main(String[] args) {
   Scanner scanner = new Scanner(System.in);
   while (scanner.hasNext()) {
       int a = scanner.nextInt();
       int b = scanner.nextInt();
       int c = scanner.nextInt();
       int max = a;
       if (b > max && c < b) {
           max = b;
       } else {
           max = c;
       }
       System.out.println(max);
       break;
   }
}


 

0.0分

0 人评分

  评论区

  • «
  • »