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

4 lines
71 B
FortranFixed
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
DO 1 I = 1,N
DO 1 J = 1,N
1 A(I,J) = (I/J)*(J/I)