Upload files to "Aufgaben/PTP_1"

This commit is contained in:
2025-07-29 08:25:40 +02:00
parent 0c9a984a51
commit 2bb8a136ee
5 changed files with 78 additions and 0 deletions

View File

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