2021-04-07 Java 打擂台

public class tianxin5 {


    // 打擂台 求最大值

    public static void main(String[] args) {

        int  [] score = new int[5];

        Scanner scanner =  new Scanner(System.in);

        //向数组中存入数值

        for (int i = 0; i < score.length; i++) {

            System.out.println("请输入第" + (i + i) +"个学生的成绩");

            score[i] = scanner.nextInt();

        }

        // 打擂台

        int max = score[0]; //假设数组中第一个元素是最大值

        for (int i = 0; i < score.length; i++) {

            if ( score[i] > max) {  //如果数组中有比当前最大值更大的数据

                max = score[i];      // 那么直接替换掉当前的最大值(更新最大值)

            }

        }

        System.out.println("最大值:" + max);

    }

}

你可能感兴趣的:(2021-04-07 Java 打擂台)