Guest User

Untitled

a guest
May 15th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.89 KB | None | 0 0
  1. system("cls");
  2. cout << "                                                                      " << endl;
  3. cout << "                        ~ ( MAIN MENU ) ~                             " << endl;
  4. cout << "                                                                      " << endl;
  5. cout << "  Чтобы перейти в меню АБОНЕНТОВ, нажмите                  ~(1)~      " << endl;
  6. cout << "  Чтобы перейти в меню СОБЫТИЙ, нажмите                    ~(2)~      " << endl;
  7. cout << "  Чтобы выйти из записной книги, нажмите                  ~(ESC)~     " << endl;
  8. cout << "                                                                      " << endl;
  9.             cout << endl << endl;
  10.             MAIN_CHOOSE = _getch();
  11.             while ((MAIN_CHOOSE != 49) && (MAIN_CHOOSE != 50) && (MAIN_CHOOSE != 27)) {
  12.                 MAIN_CHOOSE = _getch();
  13.             }
Advertisement
Add Comment
Please, Sign In to add comment