void Manager::magReservation() { int limit = 0; cout << "请输入游览时段(格式为YYYY-MM-DD 时间段(1-上午,2-下午,3-晚上)):"; string time; cin >> time; cout << "请输入最大游客数:"; cin >> limit; //将预约信息保存到容器 reservation[time] = limit; //信息-》文件 ofstream ofs; ofs.open("
时间: 2024-01-27 14:03:36 浏览: 54
Reservation.txt", ios::app); if (!ofs) { cout << "文件打开失败!" << endl; return; } ofs << time << " " << limit << endl; ofs.close(); cout << "预约成功!" << endl; }
这段代码是什么作用?
阅读全文