using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hello_World
{
class Program
{
static void Main(string[] args)
{
int day = 4;
switch(day)
{
case 0:
Console.WriteLine("월요일");
break;
case 1:
Console.WriteLine("화요일");
break;
default:
Console.WriteLine("수, 목, 금, 토, 일");
break;
}
}
}
}

'C# > 수업 내용' 카테고리의 다른 글
| [C#] 2021-08-24 오전 (0) | 2021.08.24 |
|---|---|
| [C#] 2021-08-23 오전 (0) | 2021.08.23 |
| [C#] 2021-8-20 challenge 문제, Random 중복값 방지 (0) | 2021.08.20 |
| [C#] 2021-08-20 오후 for문 연습 문제 11~17, challenge (0) | 2021.08.20 |
| [C#] 2021-08-20 오후 for문 연습 문제 1~10 (0) | 2021.08.20 |