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

Upload New File

parent 73db7965
Branches
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.
Please register or to comment