belongs to collection: Java Basic Solved Programs
Input three number from user and compare these number with each others and find largest number among these three numbers.
SOURCE CODE ::
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 ::
Enter three numbers: 23 33 14 Largest number = 33
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
SOURCE CODE ::
OUTPUT ::
need an explanation for this answer? contact us directly to get an explanation for this answer