Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {
  2. cout << "Cislo ulohy na vymazanie: ";
  3. int vstup;
  4. cin >> vstup;
  5. tasks.erase(tasks.begin() + vstup - 1);
  6. SetConsoleTextAttribute(hConsole, 10);
  7. cout << "Uloha uspesne vymazana. \n\n";
  8. SetConsoleTextAttribute(hConsole, 15);
  9. SetConsoleTextAttribute(hConsole, 11);
  10. cout << "Stlac lubovolny klaves \n\n";
  11. SetConsoleTextAttribute(hConsole, 15);
  12. _getch();
  13. menu();
  14. break;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement