P43.F90

FORMAT w/ I conversion


!
! =====> Program - P43.F90
!
!
      PRINT *, 'This is Program >> P43  - FORMAT with I conversion'
!
!     A simple FORMAT for printing integers
      N = 375
      M = -12
      PRINT 150, N, M
150   FORMAT(2I10)
      STOP
      END

OUTPUT:
Program entered
 This is Program >> P43  - FORMAT with I conversion
       375       -12
Fortran-90 STOP

Come back to the previous page

Page builder: Charles Boivin

Last modified: 11/07/95