RosettaCodeData/Task/Multiplication-tables/EasyLang/multiplication-tables.easy

25 lines
278 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
n = 12
numfmt 0 4
write " "
for i = 1 to n
write i
.
print ""
write " "
for i = 1 to n
write "----"
.
print ""
for i = 1 to n
write i
write "|"
for j = 1 to n
if j < i
write " "
else
write i * j
.
.
print ""
.