WAP to display the multiplication table of given number.

CLS
INPUT " Enter any number " ; N
FOR I = 1 TO 10
PRINT N ; " X " ; I ; " = " ; N * I
NEXT  I
END

Comments

Popular posts from this blog