Write a program to display product of digits.
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
E-Commerce (Electronic Commerce) E-Commerce or Electronic Commerce means buying and selling of goods, products, or services over the interne...
No comments:
Post a Comment