ajpfx中怎么通过索引获取最大值-mile米乐体育
本篇文章给大家分享的是有关ajpfx中怎么通过索引获取最大值,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
/*** 通过索引获取最大值*/public class test1 { public static void main(string[] args) { int[] arr = {11,22,33,44,55,66}; int max = getmax(arr); system.out.println(max); system.out.println("======================="); int max2 = getmaxbyindex(arr); system.out.println(max2); system.out.println("----------------------"); int max3 = getmax(arr, true); system.out.println(max3); system.out.println("**************************"); int max4 = getmax(arr,false); system.out.println(max4); } //通过假定数组中的第一个元素是最大值,然后不断的进行判断,最终获取对大值 public static int getmax(int[] arr){ int max = arr[0];//假设数组的第一个元素为最大值 for(int i=0;i
以上就是ajpfx中怎么通过索引获取最大值,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注恰卡编程网行业资讯频道。