To
Display the Factorial of any number
CLS
INPUT "Enter any number"; N
F =1
FOR I = 1 TO N
F = F * I
NEXT I
PRINT "Factorial="; F
END
INPUT "Enter any number"; N
F =1
FOR I = 1 TO N
F = F * I
NEXT I
PRINT "Factorial="; F
END
Today's world is highly dependent or reliant on computers and the internet than ever before. With the passage of time contemporary techn...
No comments:
Post a Comment