12) Write a program in java to find Smallest Number in three number using
if else statement.
import java.util.*;
public class Smaller_in_three_using_if_else
{
public static void main(String args[ ])
{
Scanner sc = new Scanner (System.in);
System.out.println("Enter three numbers");
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
if(a<b&&a<c)
{
System.out.println("Smaller number = "+a);
}
else if(b<a&&b<c)
{
System.out.println("Smaller number = "+b);
}
else
{
System.out.println("Smaller number = "+c);
}
}
}
No comments:
Post a Comment
if you have any doubts, Please let me know.
Your Truly
Shashank Porwal