Guest User

Untitled

a guest
Jun 25th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. a='some string and '
  2. b='some other string'
  3. write(*,101) a
  4. ...
  5. write(*,102) b
  6. ...
  7. 101 format(a,...)
  8. 102 format(a)
  9.  
  10. write(*,101,advance='no') a
  11. 101 format(a)
Add Comment
Please, Sign In to add comment