Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
INTEGER :: number = 7125
|
||||
WRITE(*,"(I8.8)") number ! Prints 00007125
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
INTEGER IV
|
||||
REAL V
|
||||
DATA V/7.125/ !A positive number.
|
||||
IV = V !Grab the integer part.
|
||||
WRITE (6,1) V,IV
|
||||
1 FORMAT (F9.3,T1,I5.5)
|
||||
END
|
||||
Loading…
Add table
Add a link
Reference in a new issue