=> CLS
INPUT "Enter any number";N
IF N>0 THEN
PRINT "The number is positive "
ELSEIF N<>0 THEN
PRINT "The number is negative "
ELSE
PRINT "The number is zero"
END IF
END
Subscribe to:
Post Comments (Atom)
Experience
My Experience of educational tour An educational tour is a fun – filled experience. As the tour may be too far away p...

-
=> CLS INPUT "Enter any number"; N S = 0 WHILE N<> 0 R = N MOD 10 S = S+R N = N\10 WEND PRINT "Sum of digits=...
-
=> CLS INPUT "Enter any number"; N FOR I = 1 TO N IF N MOD I = 0 THEN PRINT I NEXT I END
-
=> CLS INPUT "Enter any number"; N P = 1 WHILE N<> 0 R = N MOD 10 P = P*R N = N\10 WEND PRINT "Product of digits=...
No comments:
Post a Comment