summaryrefslogblamecommitdiff
path: root/src/user/app/kbasic/tables.bas
blob: 31e9ce3bd6c63fecfbc213e53748cc65bcd16632 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                
input "Taille de la table: ", k
print "Table d'addition:"
for i = 0 to k
	for j = 0 to k
		print i+j;
	next
	print
next
print "Table de multiplication:"
for i = 1 to k
	for j = 1 to k
		print i * j;
	next
	print
next