You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kturtle/data/timestables.logo

16 lines
213 B

# print times-tables
reset
canvassize 300,250
hide
penup
go 10, 0
n = inputwindow "Enter the number for which i'll print the times-table"
for x = 0 to 10 [
backward 20
r = x * n
print x," * ",n," = ",r
]