Advertisement
zrhans

escreve.f90

Jan 8th, 2021
2,658
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. program escrita
  2. implicit none
  3.  
  4. real :: a, b  
  5. open(10, file='texte.txt')
  6. a=0.2; b = -3.4;
  7. write(10,*) a, b
  8. End Program escrita
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement