fork download
  1. class Ideone
  2. {
  3. public static void main (String[] args) throws java.lang.Exception
  4. {
  5. int x = 10;
  6. for(int y = 1; y<3; y++){
  7. x++;
  8. switch(x){
  9. case 11:
  10. System.out.print("11");
  11. case 12:
  12. System.out.print("12");
  13. case 13:
  14. System.out.print("13");
  15. }
  16. }
  17. }
  18. }
Success #stdin #stdout 0.12s 54528KB
stdin
Standard input is empty
stdout
1112131213