Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created July 7, 2020 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/35694ed85ea04139ee3b4c686ae47d6a to your computer and use it in GitHub Desktop.
Save BMU-Verlag/35694ed85ea04139ee3b4c686ae47d6a to your computer and use it in GitHub Desktop.
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