Tuesday, November 22, 2016

Medapatkan Nilai Maksimum dari dua angka

Kodenya:

public class FindMaxOfTwoNumbersExample {

  public static void main(String[] args) {
 
    /*
     * To find maximum of two int values, use
     * static int max(int a, int b) method of Math class.
     */
 
    System.out.println(Math.max(20,40));
 
    /*
     * To find minimum of two float values, use
     * static float max(float f1, float f2) method of Math class.
     */
     System.out.println(Math.max(324.34f,432.324f));

    /*
     * To find maximum of two double values, use
     * static double max(double d2, double d2) method of Math class.
     */
     System.out.println(Math.max(65.34,123.45));
 
    /*
     * To find maximum of two long values, use
     * static long max(long l1, long l2) method of Math class.
     */
             
     System.out.println(Math.max(435l,523l));
  }

Hasilnya:

No comments:

Post a Comment