91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java中怎么求最大值最小值

發布時間:2021-06-21 17:58:39 來源:億速云 閱讀:574 作者:Leah 欄目:大數據

java中怎么求最大值最小值,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

java求最大值的三種方法

一般方法:

public class maxtest {	public static void main(String[] args) {		//###################最大值最小值start###################//int[] aa = {4,2,17,5,22,8,13,6};		int max = aa[0];		int min = aa[0];		for (int i = 0; i < aa.length-1; i++) {			if(aa[i] > max){
				max = aa[i];
			}
		}
		System.out.println("最大值"+max);		
		for (int i = 0; i < aa.length-1; i++) {			if(aa[i] < min){
				min = aa[i];
			}
		}
		System.out.println("最小值"+min);		//###################最大值最小值end###################//
	}
}

結果值

最大值22最小值2

三元運算符方法:

public class maxtest {	public static void main(String[] args) {		//###################三元運算符最大值最小值start###################//int[] aa = {4,2,17,5,22,8,13,6};		int max = aa[0];		int min = aa[0];		for (int i = 0; i < aa.length; i++) {
			max = (aa[i] < max ? max : aa[i]);
		}
		System.out.println("最大值"+max);		
		for (int i = 0; i < aa.length; i++) {
			min = (aa[i] > min ? min : aa[i]);
		}
		System.out.println("最小值"+min);		//###################三元運算符最大值最小值start###################//
	}
}

結果值

最大值22最小值2

無聊寫著玩的方法:

public class maxtest {	public static void main(String[] args) {		//###################最大值最小值(分開查找)start###################//int[] aa = {4,2,17,5,22,8,13,6,14,12,117,15,122,18,113,16,24,22,217,25,222,28,213,26,214,212,117,215,122,218,113,216};		int bb = aa.length/2;		int bbmax = aa[0];		for (int i = 0; i < bb-1; i++) {			if(aa[i] > bbmax){
				bbmax = aa[i];
			}
		}		int ccmax = aa[bb];		for (int i = 0; i < aa.length-1; i++) {			if(aa[i] > ccmax){
				ccmax = aa[i];
			}
		}
		System.out.println("左最大值:"+bbmax);
		System.out.println("右最大值:"+ccmax);		if(bbmax > ccmax){
			System.out.println("結果值:"+bbmax);
		}else{
			System.out.println("結果值:"+ccmax);
		}		//###################最大值最小值(分開查找)end###################//	
	}
}

結束值

左最大值:122右最大值:222結果值:222

看完上述內容,你們掌握java中怎么求最大值最小值的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江华| 奉贤区| 曲阳县| 涟水县| 章丘市| 什邡市| 东阳市| 芮城县| 海南省| 建宁县| 中西区| 额济纳旗| 察雅县| 安溪县| 玉门市| 东台市| 西安市| 怀宁县| 高唐县| 汉寿县| 乌什县| 馆陶县| 岫岩| 察哈| 万山特区| 银川市| 锦屏县| 阿坝县| 习水县| 错那县| 南召县| 闸北区| 临漳县| 壤塘县| 泗洪县| 泾川县| 云霄县| 河津市| 兴文县| 无锡市| 焦作市|