AnonymousEng

Ex:1b - page 135

Jan 14th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.       dimension country(5) , capital(5)
  2.       character(len=10) :: country
  3.       character(len=10) :: capital
  4.      
  5.       read(*,*) (country(i),i=1,5)
  6.       read(*,*) (capital(i),i=1,5)
  7.      
  8.       do 10 i=1,5
  9.          write(*,*) country(i),capital(i)
  10.  10   continue
  11.  
  12.       pause
  13.       stop
  14.       end
Advertisement
Add Comment
Please, Sign In to add comment