1 2 3 4 5
2 3 6 8 10
3 6 9 12 15
4 8 12 16 20
Solved How To Make This Multiplication Table In Pascal
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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).