标签:总结 font 对比 microsoft size span sof 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.背会能默写文字步骤
标签:总结 font 对比 microsoft size span sof for循环 获取
原文地址:https://www.cnblogs.com/NewValen/p/9217191.html