✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Was ist die Ausgabe der folgenden switch-Anweisung?
int zahl = 3;
switch (zahl) {
case 1:
System.out.print("A");
case 2:
System.out.print("B");
break;
case 3:
System.out.print("C");
case 4:
System.out.print("D");
default:
System.out.print("E");
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!