Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created July 7, 2020 09:07
switch (mitarbeiter){
case A:
System.out.print(18000);
break;
case B:
System.out.print(20400);
break;
case C:
System.out.print(24000);
break;
case D:
System.out.print(30000);
break;
case E:
System.out.print(42000);
break;
case F:
System.out.print(60000);
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment