swich 문(9)

Console/실습 2019. 9. 26. 11:16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
            switch (a)
            {
                case 1:
                    Console.WriteLine("One");
                    break;
                case 2:
                    Console.WriteLine("Two Two");
                    break;
                case 3:
                    Console.WriteLine("Three Three Three");
                    break;
                case 4:
                    Console.WriteLine("Four Four Four Four");
                    break;
            }
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

'Console > 실습' 카테고리의 다른 글

UI Panel 이미지  (0) 2019.10.14
swich 문(8)  (0) 2019.09.26
swich 문(7)  (0) 2019.09.26
swich 문(6)  (0) 2019.09.26
swich 문(5)  (0) 2019.09.26