This commit is contained in:
Mykola Fesenko
2025-07-29 08:08:23 +02:00
commit 899a05907b
355 changed files with 11002 additions and 0 deletions

8
2/Quadratzahlen.java Normal file
View File

@@ -0,0 +1,8 @@
public class Quadratzahlen {
public static void main(String args[]){
for (int zahl = 1; zahl < 21 ;zahl++ ) {
System.out.println(zahl+". Quadratzahl: " + Math.pow(zahl,zahl));
}
}
}