소스 검색

StartedGig

maxim_rogozh 2 일 전
커밋
cef1f5519d
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      main.c

+ 17 - 0
main.c

@@ -0,0 +1,17 @@
+#include <stdio.h>
+  
+int main(void)
+{
+    int x = 2;
+     
+    switch(x)
+    {
+        case 1: 
+            printf("x = 1 \n");
+        case 2: 
+            printf("x = 2 \n");
+        case 3: 
+            printf("x = 3 \n");
+    }
+    return 0;
+}