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

Upload New File

parent bdfb8b29
No related branches found
No related tags found
No related merge requests found
program hello
implicit none
CHARACTER (len=30) :: vname, nname
WRITE(*,*) "Was ist dein Vorname?"
READ(*,*) vname
WRITE(*,*) "Was ist dein Nachname?"
READ(*,*) nname
WRITE(*,*) "Hallo ", TRIM(vname) // " " // TRIM(nname), "!"
WRITE(*,*) TRIM(vname), " ist ein schoener Name. :)"
end program hello
\ 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