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

9
1/ProgIf.~ava Normal file
View File

@@ -0,0 +1,9 @@
public class ProgIf {
public static void main (String args[]) {
int guthaben = 2000000; // Variable guthaben deklarieren
System.out.println("Guthaben = " + guthaben);
if ( guthaben >= 1000000 ) {
System.out.println("Gratuliere, Du bist Millionaer!");
}
}
}