1.

Write a program to check which of the 2 numbers entered by the user is greater​

Answer»

ANSWER:

qbasic program

Explanation:

Rem find number which is GREATER

Input "first number"; N

Input "SECOND number"; S

if N > S then print N; " is greater"

if S > N then print S; " is greater"

if S = N then print "both numbers are equal"

end

thank you

pls make me brainliest



Discussion

No Comment Found