- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Дни_недели
- {
- class Program
- {
- static void Main(string[] args)
- {
- string DayOfTheWeek = "";
- string day = "";
- Console.Write("Введите число от 1 до 7: ");
- day = Console.ReadLine();
- switch (DayOfTheWeek)
- {
- case 1:
- day = Понедельник;
- }
- }
- }
- }

