Advertisement
wingman007

Menu

Sep 16th, 2016
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.59 KB | None | 0 0
  1.  
  2.             string choice = "";
  3.             int i = 1;
  4.             do
  5.             {
  6.                 Console.Clear();
  7.                 Console.WriteLine("Моля изберете:");
  8.                 Console.WriteLine("1. Пържени яйца");
  9.                 Console.WriteLine("2. Фасул");
  10.                 Console.WriteLine("3. Пиле с ориз");
  11.                 Console.WriteLine("4. Изход");
  12.                 // Console.WriteLine("do-while: {0}!", i);
  13.                 choice = Console.ReadLine();
  14.                 if (choice == "4")
  15.                 {
  16.                     break;
  17.                 }
  18.                 /*
  19.                 if (choice == "1") {
  20.                     Console.Clear();
  21.                     Console.WriteLine("Натиснете който и да е клавиш, за да се върнете към главното меню!");
  22.                     Console.WriteLine("За да си опържиш яийца ...");
  23.                     choice = Console.ReadLine();
  24.                 }
  25.                 */
  26.                 if (choice == "1")
  27.                 {
  28.                     do
  29.                     {
  30.                         Console.Clear();
  31.                         Console.WriteLine("Натиснете 4 за да се върнете към главното меню!");
  32.                         Console.WriteLine("За да си опържиш яийца ...");
  33.                         choice = Console.ReadLine();
  34.                         if (choice == "4") break;
  35.                     } while (true);
  36.  
  37.                 }
  38.             }while(true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement