n = 5; switch(n){ case 1: case 2: case 3: case 4: printf("1-4\n"); break; defualt: printf("other\n"); break; }