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

Upload New File

parent bf354b7d
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.
Please register or to comment