Don't like ads? PRO users don't see any ads ;-)

Untitled

By: inmate15 on Jun 14th, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace Дни_недели
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             string DayOfTheWeek = "";
  13.             string day = "";
  14.  
  15.             Console.Write("Введите число от 1 до 7: ");
  16.             day = Console.ReadLine();
  17.  
  18.             switch (DayOfTheWeek)
  19.             {
  20.                 case 1:
  21.                     day = Понедельник;
  22.  
  23.             }
  24.         }
  25.     }
  26. }