Ich schrieb den GNU Fortran-Code in zwei separate Dateien auf Code :: Blocks: main.f95, example.f95. main.f95 Inhalt:Fortran: Aufrufen anderer Funktionen in einer Funktion
program testing
use example
implicit none
integer :: a, b
write(*,"(a)", advance="no") "Enter first number: "
read(*,*) a
write(*,"(a)", advance="no") "Enter second number: "
read(*,*) b
write(*,*) factorial(a)
write(*,*) permutation(a, b)
write(*,*) combination(a, b)
end program testing
example.f95 Inhalt:
module example
contains
integer function factorial(x)
implicit none
integer, intent(in) :: x
integer :: product_ = 1, i
if (x < 1) then
factorial = -1
else if (x == 0 .or. x == 1) then
factorial = 1
else
do i = 2, x
product_ = product_ * i
end do
factorial = product_
end if
end function factorial
real function permutation(x, y)
implicit none
integer, intent(in) :: x, y
permutation = factorial(x)/factorial(x - y)
end function permutation
real function combination(x, y)
implicit none
integer, intent(in) :: x, y
combination = permutation(x, y)/factorial(y)
end function combination
end module example
Wenn ich diesen Code ausführen, der Ausgang ist:
Enter first number: 5
Enter second number: 3
120
0.00000000
0.00000000
Die Permutation und Kombination Funktionen funktionieren nicht richtig. Danke für die Antworten.
Dies ist etwas, das viele C/C++ - Programmierer überrascht. "integer :: i = 42" ist NICHT äquivalent zu "integer :: i; i = 42', aber stattdessen 'integer, save :: i = 42'. Der Wert von "i" wird zwischen Anrufen beibehalten und nie auf 42 zurückgesetzt. – jlokimlin