Java program to find largest of three numbers

package com;
import java.util.Scanner;
public class MyJava {
public static void main(String args[])
  {
     int x, y, z;
     System.out.println("Enter three integers ");
     Scanner in = new Scanner(System.in);
 
     x = in.nextInt();
     y = in.nextInt();
     z = in.nextInt();
 
     if ( x > y && x > z )
        System.out.println("First number is largest.");
     else if ( y > x && y > z )
        System.out.println("Second number is largest.");
     else if ( z > x && z > y )
        System.out.println("Third number is largest.");
     else   
        System.out.println("Entered numbers are not distinct.");
  }
}

Output:

Enter three integers 
1 2 3
Third number is largest.

No comments:

Post a Comment

What is Normalization?

Database normalization is a data design and organization process applied to data structures based on rules that help building relational dat...