Follow along with the video below to see how to install our site as a web app on your home screen.
ملاحظة: This feature may not be available in some browsers.
http://micro.ustc.edu.cn/Fortran/Fortran%2090%20Handbook.pdf
http://www.cs.mtu.edu/~shene/COURSES/cs201/NOTES/fortran.html
http://www.owlnet.rice.edu/~ceng303/manuals/fortran/
http://www.fortran90.org/
http://www.lahey.com/other.htm
program Goodluck
integer :: p,i
print*, "data p"
read(*,*) p
i=fact(p)
print*, "resultat i"
print*, i
pause
contains
RECURSIVE FUNCTION fact(p) RESULT (u
INTEGER, INTENT (IN) :: p
INTEGER :: u
if(p==0)then
u=1
else
u=n*fact(p-1
endif
END FUNCTION fact
end program Goodluck
بارك الله فيك
وعليكم السلام ورحمة الله وبركاته[hide]
الروابط التالية لكتاب (الرابط الأول) ومحاضرات تفصيلية حول هذا الموضوع
[hide][/hide]
[/hide]كود:http://micro.ustc.edu.cn/Fortran/Fortran%2090%20Handbook.pdf http://www.cs.mtu.edu/~shene/COURSES/cs201/NOTES/fortran.html http://www.owlnet.rice.edu/~ceng303/manuals/fortran/ http://www.fortran90.org/ http://www.lahey.com/other.htm