write a program to enter a number and find whether it is less than greater than or equal to zero in qb64
Answers
Answered by
1
Answer:
CLS
INPUT "Enter Number",N
IF N=0
PRINT "The number is ZERO"
ELSE
PRINT "The number is NOT ZERO"
END IF
END
Explanation:
Similar questions