Как получить доступ к последнему элементу в массиве в Фортране?

В Matlabend Индекс позволяет мне получить доступ к последнему элементу.

> array = [1 2 3 4 5 6 7];
> array(end)
ans =  7

Как мне сделать то же самое в Фортране?

program hello
   integer array(7)
   array = (/1, 2, 3, 4, 5, 6, 7/)
!print *, array(end)
!               1
!Error: Legacy Extension: REAL array index at (1)

! print *, array(-1)
!                1
!Warning: Array reference at (1) is out of bounds (-1 < 1) in dimension 1

! print *, array(0)
!                1
!Warning: Array reference at (1) is out of bounds (0 < 1) in dimension 1
end program Hello

Ответы на вопрос(2)

Ваш ответ на вопрос