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

Upload New File

parent 5df876ae
No related branches found
No related tags found
No related merge requests found
program vierstellig
implicit none
INTEGER :: i, j, k, l ! Zählvariablen
INTEGER :: res
WRITE(*,*) "Alle vierstelligen Zahlen aus 1, 2, 3 und 4 :"
DO i = 1, 4
DO j = 1, 4
DO k = 1, 4
DO l = 1, 4
res = i*1000 + j*100 + k*10 +j
WRITE(*,*) res
END DO
END DO
END DO
END DO
end program vierstellig
\ 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