中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

阜康市| 江安县| 象州县| 长顺县| 乌兰县| 定陶县| 金秀| 博兴县| 湘西| 阿拉善盟| 修武县| 罗甸县| 凤山市| 泽州县| 赫章县| 南溪县| 九龙坡区| 德江县| 富宁县| 旬阳县| 吴川市| 砀山县| 抚顺市| 油尖旺区| 布尔津县| 德钦县| 胶州市| 北宁市| 噶尔县| 磐安县| 昂仁县| 利辛县| 福海县| 莱西市| 吴旗县| 鄂伦春自治旗| 瑞金市| 苗栗县| 射阳县| 正安县| 牟定县|