_Title "Magic Squares of Odd Order" '$Dynamic
inc = 1
count = 1
row = 1
col = (n + 1) / 2
m(row, col) = count
count = count + 1
inc = inc + 1
row = row - 1
col = col + 1
row = n
inc = 1
row = row + 1
'Arbitrary limit ensures a fit within console window
'Can be any size that fits within your computers memory limits
Print "Order "; n;
" Magic Square constant is ";
Str$(Int((n
* n
+ 1) / 2 * n
)) ' Print