Java max() 方法
max() 方法用于返回兩個參數(shù)中的最大值。
語法
該方法有以下幾種語法格式:
double max(double arg1, double arg2) float max(float arg1, float arg2) int max(int arg1, int arg2) long max(long arg1, long arg2)
參數(shù)
該方法接受兩個原生數(shù)據(jù)類型作為參數(shù)。
返回值
返回兩個參數(shù)中的最大值。
實例
public class Test{ public static void main(String args[]){ System.out.println(Math.max(12.123, 18.456)); System.out.println(Math.max(23.12, 23.0)); } }
編譯以上程序,輸出結(jié)果為:
18.456 23.12
更多建議: