Long multiplication: Difference between revisions

→‎{{header|ALGOL 60}}: Maybe this is easier for people unfamiliar with the language to understand.
(→‎{{header|ALGOL 60}}: Better loop style. Note that the code was translated from ATS.)
(→‎{{header|ALGOL 60}}: Maybe this is easier for people unfamiliar with the language to understand.)
Line 721:
comment Skip leading zeros;
i := 0;
for ij := i while ij < m - 1 & u[ij] = 0 do
i := i + 1;
 
1,448

edits