computing
  • 4

Solved How To Make This Multiplication Table In Pascal

  • 4

1 2 3 4 5
2 3 6 8 10
3 6 9 12 15
4 8 12 16 20

Share

1 Answer

  1. your loops have no ends, (“end;”), the loops aren’t nested, so you get nothing from statement “j=i*i”, for your purposes i squared is not the object. You need loop (J) inside of bigger loop (i), and compute their extension (multiply j*i).

    • 0