您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
使用Java如何实现求最大值?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
示例代码:
/** *@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); System.out.println("最大值:" + max); } //有返回值,含参 public static int getMax (int [] array) { int max = array[0]; //局部变量写在方法内部 for (int i = 1; i < array.length; i++) { if (array[i] > max ) { max = array[i]; } } return max; } } //方法三:三元运算符,求最小值类似 public class Demo02Method { public static void main(String[] args) { int[] arr = {5, 2, 3, 12,10,11,17,1,-1,-8}; int result = arr[0]; for (int i = 1; i < arr.length; i++){ // ? 前面的表达式为条件判断 //逻辑为:如果条件表达式成立则执行result,否则执行arr[i] result = (arr[i] < result ? result : arr[i]); } System.out.println("最大值为:" + result); } } //方法四:面向对象调用,求最小值类似 public class Demo02Method { int [] arr = {9,20,5,6,1,3,7,2,4}; int num = arr[0]; public static void main(String args[]) { Demo02Method max=new Demo02Method(); //调用方法 max.getMax(); } public void getMax() { for (int i = 0; i < arr.length; i++) { if(arr[i] > arr[0]) { num = arr[i]; } } System.out.println("最大值为:" + num); } }
看完上述内容,你们掌握使用Java如何实现求最大值的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。