Java中能求出任意3個(gè)數(shù)字中最大值的代碼
成都創(chuàng)新互聯(lián)公司專注于巴林左旗企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計(jì),商城系統(tǒng)網(wǎng)站開發(fā)。巴林左旗網(wǎng)站建設(shè)公司,為巴林左旗等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站建設(shè),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
1、if語句嵌套
2、if語句
3、if語句(假定a最大,b,c與a比較,如果比a大,則賦值給max)
4、三元運(yùn)算符
5、if語句 + 邏輯運(yùn)算符 (a,b,c三個(gè)數(shù),如果不是a最大,或者b最大,就是c最大)
一、if語句嵌套
int a = 10;
int b = 30;
int c = 20;
int max;
if (a b) {
if (a c) {
max = a;
} else {
max = c;
}
} else {
if (b c) {
max = b;
} else {
max = c;
}
}
二、if語句
int a = 10;
int b = 30;
int c = 20;
int max;
if (a b) {
max = a;
} else {
max = b;
}
if (max c) {
max = c;
}
三、if語句(假定a最大,b,c與a比較,如果比a大,則賦值給max)
int a = 10;
int b = 30;
int c = 20;
int max = a;
if (b max) {
max = b;
}
if (c max) {
max = c;
}
四、三元運(yùn)算符
int a = 10;
int b = 30;
int c = 20;
int max = (a b) ? a : b;
max = (max c) ? max : c;
或者
int max = ((a b ? a : b) c) ? (a b ? a : b) : c;(建議不用這種)
五、if語句 + 邏輯運(yùn)算符 (a,b,c三個(gè)數(shù),如果不是a最大,或者b最大,就是c最大)
int a = 10;
int b = 30;
int c = 20;
int max;
if (a b a c) {
max = a;
} else if (c a c b) {
max = c;
} else
max = b;
錯(cuò)在最后兩段代碼是相同的,寫了兩個(gè)“max”,就會(huì)得到最大值與最小值是一樣的結(jié)果。
只需要把最后一個(gè)“max”改為“min”就可以了,改了之后的程序如下:
public class a {
public static void main(String args[]) {
int a[]={84,40,16,3,10,49,28,76,94,70};
int n;
int?min=a[0];
int i;
int max=a[0];
for(n=0;n=9;n++) {
if(maxa[n])
max=a[n];
}
for(i=0;i=9;i++) {
if(mina[i])
min=a[i];
}
System.out.print("max="+max);
System.out.print("min="+min);
}
}
擴(kuò)展資料:
求最大值最小值最簡單的程序:
public class a {
public static void main(String args[]) {
int a[] = {84, 40, 16, 3, 10, 49, 28, 76, 94, 70};
java.util.Arrays.sort(a);
System.out.print("max=" + a[a.length - 1]);
System.out.print("min=" + a[0]);
}
}
java中隨便定義一個(gè)數(shù)組時(shí),需要先排序之后,然后輸出最大最小值,可以使用sort類進(jìn)行排序,實(shí)例如下:
public class ArrDemo{ public static void main(String[] args){ new ArrDemo().getPrint(); } private int[] getPrint(){ java.util.Scanner sc = new java.util.Scanner(System.in); try{ System.out.println("請(qǐng)輸入數(shù)組的個(gè)數(shù)。"); int[] arr = new int[sc.nextInt()]; for(int i = 0; i arr.length; i++){ System.out.println("請(qǐng)輸入第"+(i+1)+"個(gè)數(shù)。"); arr[i] = sc.nextInt(); } getArr(arr); }catch(Exception e){ System.err.println("對(duì)不起,您輸入的不是數(shù)字。"); } } private void getArr(int[] arr){ int sum = 0; java.util.Arrays.sort(arr); for(int i = 0;i arr.length; i++){ sum += arr[i]; } System.out.println("最大值是:"+arr[arr.length-1]); System.out.println("最小值是:"+arr[0]); System.out.println("和是:"+sum); }}