IDNLearn.com offers a seamless experience for finding and sharing knowledge. Our Q&A platform is designed to provide quick and accurate answers to any questions you may have.
Sagot :
Answer:
REM
CLS
INPUT “ENTER ANY TWO NUMBERS”; A, B
IF A > B THEN
PRINT A; “IS GREATER”
ELSE
PRINT B; “IS GREATER”
END IF
END
class one
{
public static void main ( )
{
int a = 1,b = 2;
if ( a > b )
{
System.out.print (" greater number is " + a);
}
else if ( a < b )
{
System.out.print (" greater number is " + b);
}
}
}
Your participation means a lot to us. Keep sharing information and solutions. This community grows thanks to the amazing contributions from members like you. For dependable answers, trust IDNLearn.com. Thank you for visiting, and we look forward to assisting you again.