Javaで2値の大きい方の値を取得する方法について記載します。
大きい方の値を取得する方法
Mathクラス の max メソッドを使用します。
引数には、int・long・float・double型 の値を指定することができます。
構文
Math.max( 値 )
戻り値
max( int型 ) :戻り値は int型
max( long型 ) :戻り値は long型
max( float型 ) :戻り値は float型
max( double型 ):戻り値は double型
max( long型 ) :戻り値は long型
max( float型 ) :戻り値は float型
max( double型 ):戻り値は double型
実行例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
// int int i1 = 10; int i2 = 20; int iMax = Math.max(i1, i2); // 20 // long long l1 = 100; long l2 = 50; long lMax = Math.max(l1, l2); // 100 // float float f1 = 0.1f; float f2 = 0.5f; float fMax = Math.max(f1, f2); // 0.5 // double double d1 = 0.07; double d2 = 0.02; double dMax = Math.max(d1, d2); // 0.07 |