summaryrefslogtreecommitdiff
path: root/src/user/app/kbasic/tables.bas
blob: a6aaf9cbb7eeebef24814ef773ea0c9ac7028d3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
input "Table size: ", k
print "Addition table:"
for i = 0 to k
	for j = 0 to k
		print i+j;
	next
	print
next
print "Multiplication table:"
for i = 1 to k
	for j = 1 to k
		print i * j;
	next
	print
next