Program to Create Mathematics Table in QBASIC
CLS
PRINT "Table of 3"
a = 3
FOR t = 1 TO 10
    PRINT "3"; "*", t;  "="; a * t
NEXT t
END



Program to Create any Mathematics Table in QBASIC
CLS
INPUT "Which Table You want"; n
a = n
FOR t = 1 TO 10
    PRINT n; "*"; t; "="; a * t
NEXT t
END