I am trying to create a multiplication table from 1 to 10, but print each line one at a time. I need to know how to do this in flowgorithm. I have the chart correct to print the multiplication table but I need to separate it into columns when the loop starts again.
example
1 2
2 4
3 6
4 8
5 10
6 12
7 14
8 16
9 18
10 20
When you want to draw a matrix/table of numbers, loop on rows and columns:
The output is:
The XML version: