Guest User

Untitled

a guest
May 16th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         PROGRAM TOPLAM
  2.         integer x,y,z
  3.         print*, "sayi plz"
  4.         read(*,*) x
  5.         print*, "sayi plz"
  6.         read(*,*) y
  7.         topla(x,y)
  8.         print*, "toplam=",  z
  9.         pause
  10.        
  11.  
  12.         integer function topla(integer a,integer b)
  13.         return a + b
  14.         end function
  15.         print*, "topla=" topla(x,y)
Add Comment
Please, Sign In to add comment