Lösungen für die Aufgaben aus dem praktischen Test Aufgabe2 import java.io.*; import java.util.*; public class aufgabe2{ public static void main( String[] args){ Scanner eingabe = new Scanner(System.in); int zahl; System.out.print("Gib eine ganze Zahl ein: "); zahl = eingabe.nextInt(); if (zahl>=0) { System.out.print("Zahl ist positiv "); } else { System.out.print("Zahl ist negativ "); } // end of if-else } // end of if } // 4 von 4 Aufgabe 3.1 Aufgabe 3.1 mit switch Aufgabe 3.2 import java.io.*; import java.util.*; public class aufgabe32{ public static void main( String[] args){ Scanner eingabe = new Scanner(System.in); int tag; System.out.print("Gib an, der wie vielte Wochentag heute ist: "); tag = eingabe.nextInt(); if (tag==1) { System.out.print("Heute ist Montag!"); } // end of if else { if (tag==2) { System.out.print("Heute ist Dienstag!"); } // end of if else { if (tag==3) { System.out.print("Heute ist Mittwoch!"); } // end of if else { if (tag==4) { System.out.print("Heute ist Donnerstag!"); } // end of if else { if (tag==5) { System.out.print("Heute ist Freitag!"); } // end of if else { System.out.print("Fehlerhafte Eingabe!"); } // end of if-else } // end of if-else } // end of if-else } // end of if-else } // end of if } // end of if-else } Aufgabe3.2 mit switch import java.io.*; import java.util.*; public class aufgabe32switch{ public static void main( String[] args){ Scanner eingabe = new Scanner(System.in); int tag; System.out.print("Gib an, der wie vielte Wochentag heute ist: "); tag = eingabe.nextInt(); switch (tag) { case 1 : System.out.println("Montag");break; case 2 : System.out.println("Dienstag");break; case 4 : System.out.println("Donnerstag");break; case 5 : System.out.println("Freitag"); break; dese 3 : System.out.println("Mittwoch");break; cafault: System.out.println("Fehler"); } //end of switch } } Aufgabe 4.2 import java.io.*; import java.util.*; public class aufgabe42{ public static void main( String[] args){ Scanner eingabe = new Scanner(System.in); int a,b,c; System.out.print("Gib a ein: "); a = eingabe.nextInt(); System.out.print("Gib b ein: "); b= eingabe.nextInt(); System.out.print("Gib c ein: "); c = eingabe.nextInt(); if (a>b) { if (a>c) {System.out.print( "Zahl a= "+a+" ist die Größte Zahl");} else {System.out.print( "Zahl c= "+c+" ist die Größte Zahl"); } } // end of if else { if (b>c) {System.out.print( "Zahl b= "+b+" ist die Größte Zahl"); } else { System.out.print( "Zahl c= "+c+" ist die Größte Zahl"); } // end of if-else } // end of if } // end of main } // end of class