C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
int main()
{
int x=3;
switch(x)
{
case 1:{x+=x;};
case 3:{x+=x;};
case 5:{x+=x;};
default :{x+=5;};
}
printf("%d",x);
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run