import java.util.*;
class notequal
{
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 First number is not equal to second ");
else
System.out.println ("\n\t Both numbers are equal ");
}
}
Note:
After you have entered values of both variables, computer will evaluate the condition
- If value of 'a' isn't equal to value of 'b' then
" Both numbers are equal " will be displayed.
No comments:
Post a Comment