Home » , » [Java 學習筆記] 求出兩數之間的最大值(max 方法)或最小值(min 方法)

[Java 學習筆記] 求出兩數之間的最大值(max 方法)或最小值(min 方法)

作者:軟體罐頭 | 發表日期:2019年1月14日 星期一

在開發Java程式時,常常會需要將兩數做比較,這時就需要用到 max 方法及 min 方法,以下就用範例來學習如何使用,語法如下:

max 方法及 min 方法皆屬於 java.lang.Math 物件裡的方法,使用方法可參考官方手冊

max 方法有4種不同資料型別的呼叫方法:

  1. public static int max(int a,int b)
  2. public static long max(long a,long b)
  3. public static float max(float a,float b)
  4. public static double max(double a,double b)


min 方法有4種不同資料型別的呼叫方法:

  1. public static int min(int a,int b)
  2. public static long min(long a,long b)
  3. public static float min(float a,float b)
  4. public static double min(double a,double b)

範例:
  1. class ex_max_min {
  2.     public static void main(String[] args)  {
  3.                 System.out.println("最大值(90,78):" Math.max(90,78));
  4.                 System.out.println("最小值(56,45):" Math.min(56,45));
  5.     }
  6. }
執行結果:


分享 :
 
Copyright © 2013. 軟體罐頭 - All Rights Reserved
Blogger | Creating Website | Johny Template | Mas Template 技術提供