您好,登錄后才能下訂單哦!
這篇文章給大家介紹Java中怎么獲取數組最大和最小值,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
Main.java 文件:
import java.util.Arrays;import java.util.Collections; public class Main { public static void main(String[] args) { Integer[] numbers = { 8, 2, 7, 1, 4, 9, 5}; int min = (int) Collections.min(Arrays.asList(numbers)); int max = (int) Collections.max(Arrays.asList(numbers)); System.out.println("最小值: " + min); System.out.println("最大值: " + max); }}
以上代碼運行輸出結果為:
最小值: 1最大值: 9
java求數組中元素最大值最小值及其下標
功能需求:遍歷數組,并求出數組中元素的最大元素,最小元素,及其相應的索引等問題,要求用方法完成. 思路:分別創建不同的方法,然后再調用方法.
代碼展示:
public class Array{ public static void main(String[] args){ int[] arr={13,45,7,3,9,468,4589,76,4}; //聲明數組并賦值 //調用遍歷的方法 print(arr); //在同一個類中,類名可以省略 //調用獲取最大值的方法 System.out.println("最大元素為:"+max(arr)); //調用獲取最大值索引的方法 System.out.println("最大元素的索引為:"+maxIndex(arr)); //調用獲取最小值的方法 System.out.println("最小元素為:"+min(arr)); //調用獲取最小值索引的方法 System.out.println("最小元素的索引為:"+minIndex(arr)); //調用查找元素是否存在的方法 System.out.println("查找元素的狀態為:"+search(arr,9)); //調用查找元素是否存在并返回索引方法 System.out.println("查找元素的索引為:"+searchIndex(arr,9)); } //遍歷數組 public static void print(int[] arr){ /*for(int i:arr){ //使用加強for循環遍歷 System.out.print(arr[i]+"\t"); } System.out.println; */ for(int i=0;i<arr.length;i++){ System.out.print(arr[i]+"\t"); } System.out.println(); } //獲取最大值 public static int max(int[] arr){ int max=arr[0]; for(int i=0;i<arr.length;i++){ if(arr[i]>max){ max=arr[i]; } } return max; } //獲取最大值索引 public static int maxIndex(int[] arr){ int maxIndex=0;; for(int i=0;i<arr.length;i++){ if(arr[i]>arr[maxIndex]){ maxIndex=i; } } return maxIndex; } //獲取最小值 public static int min(int[] arr){ int min=arr[0]; for(int i=0;i<arr.length;i++){ if(arr[i]<min){ min=arr[i]; } } return min; } //獲取最小值索引 public static int minIndex(int[] arr){ int minIndex=0;; for(int i=0;i<arr.length;i++){ if(arr[i]<arr[minIndex]){ minIndex=i; } } return minIndex; } //在數組中查找指定元素是否存在 ,如是存在返回true,不存在返回false public static boolean search(int[] arr,int number){ for(int i=0;i<arr.length;i++){ if(number==arr[i]){ return true; } } return false; } //在數組中查找指定元素是否存在 ,如是存在返回索引,不存在返回-1 public static int searchIndex(int[] arr,int number){ for(int i=0;i<arr.length;i++){ if(number==arr[i]){ return i; //返回索引 } } return -1; }}
關于Java中怎么獲取數組最大和最小值就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。