RosettaCodeData/Task/Identity-matrix/Fortran/identity-matrix-3.f

4 lines
71 B
FortranFixed
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
DO 1 I = 1,N
DO 1 J = 1,N
1 A(I,J) = (I/J)*(J/I)