Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. program project5_03
  2. implicit none
  3. integer :: n = 0
  4. open ( unit = 21, file = 'trial.txt', status = 'old')
  5. read (21,*) n
  6. print '(1x,a,i4)', "this is the value of n", n
  7. stop
  8. end program
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement