1. 程式人生 > >獲取數組最大值

獲取數組最大值

sof turn length 接受 數組 創建 span 步驟 for

/**
* 任務:獲取數組最大值
* @param 創建arr 接受一個元素為int類型的數組
* @return 返回該數組中最大元素*/
public class GetMax {//創建類
public static int maxIndex(int[] arr) {//創建arr數組 接受int類型的最大元素
int maxIndex = 0;//創建maxIndex
for (int x = 0; x < arr.length; x++) {//for循環 自動對比
if (arr[x]>arr[maxIndex]) {//if循環 對比後換位
maxIndex = x;//換位
}


}
return maxIndex;//返回最大值
}

總結:

1.背會能默寫文字步驟

獲取數組最大值