1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
program S4
implicit none
integer, dimension (:), allocatable :: IDeltN ! declaration d'un tableau d'entiers
integer :: taille ! taille du tableau IDeltN
c
TAILLE=99999999
allocate (IDeltN(0:taille)) ! allocation de la memoire pour le tableau
IDeltN(0)=0
IDeltN(1)=1
IDeltN(99999999)=9
c
call lecelt(IDeltN)
c
print('(/A,I8.8)'), ' IDeltN(0)=', IDeltN(0)
print('(A,I8.8)'), ' IDeltN(1)=', IDeltN(1)
print('(A,I8.8/)'), ' IDeltN(99999999)=', IDeltN(99999999)
stop
end program S4 |