=> 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="; P
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