swich 문(7)

Console/실습 2019. 9. 26. 11:14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Console.WriteLine("Edge,Chrome,Firefox,Safari,Opera 중 입력해주세요.");
            string a = Console.ReadLine();
            switch (a)
            {
                
                case "Firefox":
                case "Safari":
                case "Chrome":
                    Console.WriteLine("Available");
                    break;
                case "Opera":
                case "Edge":
                    Console.WriteLine("Not available");
                    break;
            }
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

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

swich 문(9)  (0) 2019.09.26
swich 문(8)  (0) 2019.09.26
swich 문(6)  (0) 2019.09.26
swich 문(5)  (0) 2019.09.26
swich 문(4)  (0) 2019.09.26