Content deleted Content added
Line 26:
}
}
'''PASCAL'''
for i:=1 to n do
for j:=1 to n do
a[i,j] := a[i,j] + b[i,j];
This need to loop and index to perform operations on arrays is both tedious and error prone.
|