Hi,
I am new to Fortran. I would like to be able to construct and print a two-dimensional array. For example, I wrote the following code:
PROGRAM myarray
IMPLICIT NONE
INTEGER :: i, j, k
INTEGER, DIMENSION(3,4) :: a
k=1
DO i=1,3
DO j=1,4
a(i,j)=k
k=k+1
END DO...