#include #include #include using namespace std; vector tasks; void AddTask() { string task; cout << "Введите новую задачу: "; getline(cin, task); tasks.push_back(task); cout << "Задача успешно добавлена!\n"; } void ViewTasks() { if (tasks.empty()) { cout << "Список задач пуст\n"; } else { cout << "Список задач:\n"; for (int i = 0; i < tasks.size(); ++i) { cout << i + 1 << ". " << tasks[i] << endl; } } } int main() { bool exit = false; while (!exit) { cout << "Выберите действие:" << endl; cout << "1. Добавить задачу" << endl; cout << "2. Просмотреть список задач" << endl; cout << "3. Выход" << endl; int choice; cin >> choice; cin.ignore(); // Очистить буфер ввода switch (choice) { case 1: AddTask(); break; case 2: ViewTasks(); break; case 3: exit = true; break; default: cout << "Ошибка: Неверный выбор" << endl; break; } } return 0; }