blob: f9239f4cebde398a9404f301fdc56d15f0f8dce1 [file] [log] [blame]
program functioncalling
implicit none
print *, 'This is the Fortran program; I am going to call some functions now...'
call sum(1.0,2.0,3.0)
call factorial(3)
print *, 'Done'
contains
subroutine sum(x,y,z)
implicit none
real :: x
real :: y
real :: z
x = x+y+z
print *, x
end subroutine sum
subroutine factorial(j)
implicit none
integer :: i
integer :: j
real :: p
p=1
i=1
do i=1,j
p=p*i
end do
print *, j, "! = ", p
end subroutine factorial
subroutine sum2(x,y)
implicit none
real :: p
integer :: x, y
p = x+y
end subroutine sum2
end