Write a Java Program to find Largest among three Numbers
Input three number from user and compare these number with each others and find largest number among these three numbers.
SOURCE CODE ::
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import java.util.Scanner; public class Largest { public static void main(String[] args) { int a,b,c,largest; Scanner sc=new Scanner(System.in); System.out.println("Enter three numbers: "); a=sc.nextInt(); b=sc.nextInt(); c=sc.nextInt(); if(a>=b && a>=c) { System.out.println("Largest number = "+a); } if(b>=a && b>=c) { System.out.println("Largest number = "+b); } if(c>=a && c>=b) { System.out.println("Largest number = "+c); } } } |
OUTPUT ::
1 2 3 4 5 |
Enter three numbers: 23 33 14 Largest number = 33 |