前言
本文主要给大家分享了关于java求最大值的4中方法,文中给出了完整的示例代码,下面话不多少了,来一起看看吧
示例代码:
/**
*@author Prannt
*求最大值(或最小值)
*本例以int数据类型为例,可指定其他数据类型
*/
//方法一:直接法,求最小值类似
public class Deno05ArrayMax {
public static void main(String[] args) {
//数据类型可指定
int [] array = {5,15,20,30,10000};
int max = array[0];//假设第一个值为最大值
for (int i = 1; i < array.length; i++) { //和后面的数进行比较
if(array[i] > max) {
max = array[i];
}
}
System.out.println(“最大值是:” + max);
}
}
//方法二:调用方法求最大值,求最小值类似
public class Demo02Method {
public static void main(String[] args) {
int [] array = {5,15,35};
int max = getMax(array);