This commit is contained in:
Jeehoon Kang
2024-05-08 03:31:34 +00:00
parent c73c81c10e
commit 099672d0b8
17 changed files with 463 additions and 226 deletions

View File

@@ -0,0 +1,18 @@
int main() {
int i = 0;
int c = 0;
while (i < 10) {
i++;
switch (i) {
case (1): {
continue;
break;
}
default: {
break;
}
}
c++;
}
return c;
}