Pseudocode Task

Hint: This program determines if a number is positive, negative, or zero.

INPUT number // from user, assume it's converted to a numeric type
IF number > 0:
    PRINT "The number is positive."
ELIF number < 0: // Python-like 'elif'
    PRINT "The number is negative."
ELSE:
    PRINT "The number is zero."
END IF