最大值平均值和排序
根據(jù)文本提示輸入五個(gè)年齡,點(diǎn)擊Enter之后程序會(huì)輸出五個(gè)年齡中最大的年齡,平均年齡即年齡從小到大的排序分別是啥。
結(jié)果演示
代碼演示
package com.nine; import java.util.Scanner; import java.util.Arrays; public class Shuzu {public static void main(String[] args) {int[] score = new int[5];Scanner input = new Scanner(System.in);System.out.println("請(qǐng)輸入五個(gè)年齡:");for(int i=0;i<5;i++){score[i] =input.nextInt();}int max = 0;for(int i=0;i<score.length;i++){if(score[i]>max){max = score[i];}}System.out.println("最大的年齡是:"+max);int sum = 0;for(int i=0;i<score.length;i++){sum+=score[i];}System.out.println("平均年齡為:"+sum/score.length);System.out.print("年齡從小到大的排序?yàn)?#xff1a;");Arrays.sort(score);for(int i=0;i<score.length;i++){System.out.print(score[i]+",");}}}了解更多關(guān)注我喲!!!
總結(jié)
- 上一篇: 获取焦点改变状态
- 下一篇: html怎么设计自己的网页,求一份自己设