summaryrefslogblamecommitdiff
path: root/src/user/app/kbasic/tables.bas
blob: a6aaf9cbb7eeebef24814ef773ea0c9ac7028d3a (plain) (tree)
1
2
3
4
5
6
7
8
9

                       





                          
                             





                            
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