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.  
  12. case 12:
  13. System.out.print("12 ");
  14.  
  15. case 13:
  16. System.out.print("13 ");
  17. }
  18. }
  19. }
  20. }
Success #stdin #stdout 0.11s 52488KB
stdin
Standard input is empty
stdout
11 12 13 12 13