import java.util.*;
class usingequal
{
public static void main (String arg[])
{
Scanner in = new Scanner (System.in);
int a,b;
System.out.print ("\n\t Enter first number = ");
a=in.nextInt();
System.out.print ("\n\t Enter second number = ");
b=in.nextInt();
if (a==b)
System.out.println ("\n\t Both numbers are equal ");
else
System.out.println ("\n\t First number is not equal to second ");
}
}
Note:
After entering values, computer will check the condition
- If 'a' is equal to 'b' then
" Both numbers are equal " will be displayed. Otherwise
" First number is not equal to second " this message will be displayed on screen.
No comments:
Post a Comment