Hi all
I am new to fortran and so trying to understand some caracteristics of this language
can anyone explain to me the logic below?
do i=line+1, line+msup
read(*,*) (Akapla(i,j), j=2, nvar+1), Akapla(i,1)
if(Akapla(i,1).lt.0) then
write(*,*) 'Does not matter'
stop
endif
enddo
I am new to fortran and so trying to understand some caracteristics of this language
can anyone explain to me the logic below?
do i=line+1, line+msup
read(*,*) (Akapla(i,j), j=2, nvar+1), Akapla(i,1)
if(Akapla(i,1).lt.0) then
write(*,*) 'Does not matter'
stop
endif
enddo