Skip to content
Snippets Groups Projects
Commit bf354b7d authored by dali662d's avatar dali662d
Browse files

Upload New File

parent 741d2d9d
No related branches found
No related tags found
No related merge requests found
program huge_test
implicit none
INTEGER :: n
REAL :: r
n = HUGE(n)
r = HUGE(r)
WRITE(*,*) "Die HUGE-Funktion gibt folgendes zurück:"
WRITE(*,*) n, "(Integer)" ! Ausgabe : 2147483647
WRITE(*,*) r, "(Real)" ! Ausgabe : 3.40282347E+38
end program huge_test
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment