Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- string choice = "";
- int i = 1;
- do
- {
- Console.Clear();
- Console.WriteLine("Моля изберете:");
- Console.WriteLine("1. Пържени яйца");
- Console.WriteLine("2. Фасул");
- Console.WriteLine("3. Пиле с ориз");
- Console.WriteLine("4. Изход");
- // Console.WriteLine("do-while: {0}!", i);
- choice = Console.ReadLine();
- if (choice == "4")
- {
- break;
- }
- /*
- if (choice == "1") {
- Console.Clear();
- Console.WriteLine("Натиснете който и да е клавиш, за да се върнете към главното меню!");
- Console.WriteLine("За да си опържиш яийца ...");
- choice = Console.ReadLine();
- }
- */
- if (choice == "1")
- {
- do
- {
- Console.Clear();
- Console.WriteLine("Натиснете 4 за да се върнете към главното меню!");
- Console.WriteLine("За да си опържиш яийца ...");
- choice = Console.ReadLine();
- if (choice == "4") break;
- } while (true);
- }
- }while(true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement