Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROG-material-public
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Walter, Wolfgang
PROG-material-public
Commits
bf354b7d
Commit
bf354b7d
authored
5 months ago
by
dali662d
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
741d2d9d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Sonderuebung/WiSe24-25/SU02_2024_10_29_Datentypen/02_huge_test.f95
+14
-0
14 additions, 0 deletions
...ung/WiSe24-25/SU02_2024_10_29_Datentypen/02_huge_test.f95
with
14 additions
and
0 deletions
Sonderuebung/WiSe24-25/SU02_2024_10_29_Datentypen/02_huge_test.f95
0 → 100644
+
14
−
0
View file @
bf354b7d
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment