计科对口211班彭臣阿长


私信TA

用户名:dotcpp0633325

访问量:304

签 名:

熬夜加班有爪哇

等  级
排  名 27133
经  验 560
参赛次数 0
文章发表 10
年  龄 21
在职情况 学生
学  校 广西科技师范学院
专  业 计算机科学与技术

  自我简介:

阿长自学java 已有两年半

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
   public static void main(String[] args)  throws Exception{
       BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
       String str = br.readLine();
       String[] strs = str.split(" ");
       int max=0;
       for (int i = 0; i < strs.length-1; i++) {
           if (Integer.parseInt(strs[i]) > Integer.parseInt(strs[i+1])){
               max = Integer.parseInt(strs[i]);
               strs[i+1]=strs[i]; // 不考虑原数组,直接覆盖,解决30 20 10
           }else {
               max = Integer.parseInt(strs[i+1]);
           }
       }
       System.out.println(max);
   }
}

 

0.0分

0 人评分

  评论区

  • «
  • »