Syntax error Java Program to get the maximum of three long values

Java Program to get the maximum of three long values



Firstly, let us declare and initialize three long values −

long val1 = 98799;
long val2 = 98567;
long val3 = 98768;

Now, find the maximum of three long values using the following condition −

// checking for maximum
if (val2 > val1) {
   val1 = val2;
}
if (val3 > val1) {
   val1 = val3;
}

The following is the complete example to get the maximum value −

Example

 Live Demo

public class Demo {
   public static void main(String[] args) {
      long val1 = 98799;
      long val2 = 98567;
      long val3 = 98768;
      // displaying
      System.out.println("Number 1 = "+val1);
      System.out.println("Number 2 = "+val2);
      System.out.println("Number 3 = "+val3);
      // checking for maximum
      if (val2 > val1) {
         val1 = val2;
      }
      if (val3 > val1) {
         val1 = val3;
      }
      System.out.println("The greatest of three numbers: "+val1);
   }
}

Output

Number 1 = 98799
Number 2 = 98567
Number 3 = 98768
The greatest of three numbers: 98799
Updated on: 2019-07-30T22:30:24+05:30

222 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements