7 lines
108 B
C
7 lines
108 B
C
int main() {
|
|
int x = 0;
|
|
switch(x) {
|
|
case 1: x = 1; break;
|
|
default: return 0;
|
|
}
|
|
} |