find the largest or equal of three numbers in java code example
Example: Java program to find largest of three numbers
largest of three numbers in java using if else
import java.util.Scanner;
public class LargestOfThreeNumbersInJava
{
public static void main(String[] args)
{
int a, b, c;
System.out.println("Please enter three numbers: ");
Scanner sc = new Scanner(System.in);
a = sc.nextInt();
b = sc.nextInt();
c = sc.nextInt();
if(a >= b && a >= c)
System.out.println(a + " is the largest number.");
else if(b >= a && b >= c)
System.out.println(b + " is the largest number.");
else
System.out.println(c + " is the largest number.");
sc.close();
}
}