Computer Science, asked by adityapandey0567, 7 hours ago

program to find the greater of three number​

Answers

Answered by rangilthakur71
0

Answer:

import java.util.Scanner;

public class LargestNumberExample1

{

public static void main(String[] args)

{

int a, b, c, largest, temp;

//object of the Scanner class

Scanner sc = new Scanner(System.in);

//reading input from the user

System.out.println("Enter the first number:");

a = sc.nextInt();

System.out.println("Enter the second number:");

b = sc.nextInt();

System.out.println("Enter the third number:");

c = sc.nextInt();

//comparing a and b and storing the largest number in a temp variable

temp=a>b?a:b;

//comparing the temp variable with c and storing the result in the variable

largest=c>temp?c:temp;

//prints the largest number

System.out.println("The largest number is: "+largest);

}

}

Similar questions