import java.util.Scanner;
public class sout_list {
? ? public static void main(String[] args) {
? ? ? ? Scanner imput = new Scanner(System.in);
? ? ? ? int num = 10;? ? ? //多少個(gè)數(shù)據(jù)
? ? ? ? int[] list = new int[num];? ? ? //創(chuàng)建一個(gè)數(shù)組存放數(shù)據(jù)
? ? ? ? System.out.println("請輸入"+num+"個(gè)數(shù)據(jù)");
? ? ? ? for (int i = 0; i < num; i++) { //把數(shù)據(jù)寫進(jìn)數(shù)組中
? ? ? ? ? ? list[i] = imput.nextInt();
? ? ? ? }
? ? ? ? int max = list[0];? ? ? //設(shè)置第一個(gè)輸入值為目前最大值
? ? ? ? for (int i = 0; i <list.length ; i++) {? ? //對每個(gè)數(shù)據(jù)進(jìn)行判斷卷谈,最大則輸出
? ? ? ? ? ? if(list[i]>max) max = list[i];
? ? ? ? ? ? //循環(huán)判斷當(dāng)前最大和下一個(gè)之間比較,下一個(gè)大霞篡,則把最大值賦予并修改世蔗。全部循環(huán)完成端逼,把最大值輸出。
? ? ? ? }
? ? ? ? System.out.println("最大值:? " + max);
? ? }
}
---------------------
作者:不要慫污淋,就是干
來源:CSDN
原文:https://blog.csdn.net/weixin_42013825/article/details/88024315
版權(quán)聲明:本文為博主原創(chuàng)文章裳食,轉(zhuǎn)載請附上博文鏈接!