码迷,mamicode.com
首页 > 编程语言 > 详细

获取数组最大值

时间:2018-06-23 15:32:03      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:总结   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!