CLARIFICATION -

DO 10 I=1,10

The primary loop construct used in FORTRAN. Replaced by the much more clear and meaningful C++ "for" statement shown below.

for(int i=1;i<11;i++)

Back to Real Programmers