Author: Sanif S S
}
Site: theeduzone.blogspot.com
Email: sanifss@gmail.com
Email: sanifss@gmail.com
<
import java.util.*;
class Greatest2
{
public static void main(String[] ar)
{
Scanner s=new Scanner(System.in);
int a,b;
System.out.println(“Enter 2 numbers”);
a=s.nextInt();
b=s.nextInt();
if(a>b)
System.out.println(“A is Greater”);
else if(a==b)
System.out.println(“Both are equal”);
else
System.out.println(“B is Greater”);
}
No comments:
Post a Comment