设计实现一个简单的汽车租赁管理系统。 要求: ① 车辆基本信息管理(车辆的添加、删除、修改); ② 租车管理功能(租车、换车、计费等); ③ 统计功能(统计出租率、出租费用)。 要求包括文件的创建读取 用C++代码实现请你写出完整的C++代码

时间: 2024-03-16 19:42:42 浏览: 99
ZIP

java毕业设计管理系统源码之汽车租赁管理系统.zip

好的,以下是一个基本的C++代码实现: ```c++ #include <iostream> #include <fstream> #include <string> #include <vector> #include <ctime> using namespace std; // 车辆信息类 class Car { public: Car(string id, string brand, string model, double price, bool rented = false) { this->id = id; this->brand = brand; this->model = model; this->price = price; this->rented = rented; } string getID() { return id; } string getBrand() { return brand; } string getModel() { return model; } double getPrice() { return price; } bool getRented() { return rented; } void setRented(bool rented) { this->rented = rented; } private: string id; string brand; string model; double price; bool rented; }; // 租车信息类 class Rental { public: Rental(string id, string name, string phone, string carID, int days) { this->id = id; this->name = name; this->phone = phone; this->carID = carID; this->days = days; time_t now = time(nullptr); tm* ltm = localtime(&now); this->rentDate = to_string(1900 + ltm->tm_year) + "-" + to_string(1 + ltm->tm_mon) + "-" + to_string(ltm->tm_mday); } string getID() { return id; } string getName() { return name; } string getPhone() { return phone; } string getCarID() { return carID; } int getDays() { return days; } string getRentDate() { return rentDate; } void setReturnDate(string returnDate) { this->returnDate = returnDate; } double getCost(vector<Car>& cars) { for (Car& car : cars) { if (car.getID() == carID) { return days * car.getPrice(); } } return 0; } private: string id; string name; string phone; string carID; int days; string rentDate; string returnDate; }; // 车辆信息文件名 const string CAR_FILE = "cars.txt"; // 租车信息文件名 const string RENTAL_FILE = "rentals.txt"; // 车辆信息管理类 class CarManager { public: CarManager() { // 读取车辆信息文件 ifstream ifs(CAR_FILE); string id, brand, model; double price; bool rented; while (ifs >> id >> brand >> model >> price >> rented) { cars.push_back(Car(id, brand, model, price, rented)); } ifs.close(); } ~CarManager() { // 保存车辆信息到文件 ofstream ofs(CAR_FILE); for (Car& car : cars) { ofs << car.getID() << " " << car.getBrand() << " " << car.getModel() << " " << car.getPrice() << " " << car.getRented() << endl; } ofs.close(); } void addCar(string id, string brand, string model, double price) { cars.push_back(Car(id, brand, model, price)); } void removeCar(string id) { for (int i = 0; i < cars.size(); i++) { if (cars[i].getID() == id) { cars.erase(cars.begin() + i); break; } } } void editCar(string id, string brand, string model, double price) { for (Car& car : cars) { if (car.getID() == id) { car.setBrand(brand); car.setModel(model); car.setPrice(price); break; } } } vector<Car>& getCars() { return cars; } private: vector<Car> cars; }; // 租车信息管理类 class RentalManager { public: RentalManager() { // 读取租车信息文件 ifstream ifs(RENTAL_FILE); string id, name, phone, carID, rentDate, returnDate; int days; while (ifs >> id >> name >> phone >> carID >> days >> rentDate >> returnDate) { Rental rental(id, name, phone, carID, days); rental.setReturnDate(returnDate); rentals.push_back(rental); } ifs.close(); } ~RentalManager() { // 保存租车信息到文件 ofstream ofs(RENTAL_FILE); for (Rental& rental : rentals) { ofs << rental.getID() << " " << rental.getName() << " " << rental.getPhone() << " " << rental.getCarID() << " " << rental.getDays() << " " << rental.getRentDate() << " " << rental.getReturnDate() << endl; } ofs.close(); } void rentCar(string name, string phone, string carID, int days) { time_t now = time(nullptr); tm* ltm = localtime(&now); string id = to_string(ltm->tm_year + 1900) + to_string(1 + ltm->tm_mon) + to_string(ltm->tm_mday) + to_string(ltm->tm_hour) + to_string(ltm->tm_min) + to_string(ltm->tm_sec); Rental rental(id, name, phone, carID, days); rentals.push_back(rental); for (Car& car : cars) { if (car.getID() == carID) { car.setRented(true); break; } } } void returnCar(string rentalID) { for (Rental& rental : rentals) { if (rental.getID() == rentalID) { rental.setReturnDate(getCurrentDate()); for (Car& car : cars) { if (car.getID() == rental.getCarID()) { car.setRented(false); break; } } break; } } } vector<Rental>& getRentals() { return rentals; } double getRevenue() { double revenue = 0; for (Rental& rental : rentals) { revenue += rental.getCost(cars); } return revenue; } double getRentRate() { int rentedCount = 0; for (Car& car : cars) { if (car.getRented()) { rentedCount++; } } return (double)rentedCount / cars.size(); } private: vector<Rental> rentals; vector<Car>& cars = CarManager().getCars(); string getCurrentDate() { time_t now = time(nullptr); tm* ltm = localtime(&now); return to_string(1900 + ltm->tm_year) + "-" + to_string(1 + ltm->tm_mon) + "-" + to_string(ltm->tm_mday); } }; // 主函数 int main() { CarManager carManager; RentalManager rentalManager; while (true) { cout << "1. 车辆管理" << endl; cout << "2. 租车管理" << endl; cout << "3. 统计功能" << endl; cout << "4. 退出" << endl; cout << "请选择操作:"; int choice; cin >> choice; switch (choice) { case 1: cout << "1. 添加车辆" << endl; cout << "2. 删除车辆" << endl; cout << "3. 修改车辆" << endl; cout << "请选择操作:"; cin >> choice; switch (choice) { case 1: cout << "请输入车牌号:"; string id, brand, model; double price; cin >> id; cout << "请输入品牌:"; cin >> brand; cout << "请输入型号:"; cin >> model; cout << "请输入租金:"; cin >> price; carManager.addCar(id, brand, model, price); cout << "添加成功!" << endl; break; case 2: cout << "请输入要删除的车牌号:"; cin >> id; carManager.removeCar(id); cout << "删除成功!" << endl; break; case 3: cout << "请输入要修改的车牌号:"; cin >> id; cout << "请输入新的品牌:"; cin >> brand; cout << "请输入新的型号:"; cin >> model; cout << "请输入新的租金:"; cin >> price; carManager.editCar(id, brand, model, price); cout << "修改成功!" << endl; break; default: cout << "无效的操作!" << endl; break; } break; case 2: cout << "1. 租车" << endl; cout << "2. 还车" << endl; cout << "请选择操作:"; cin >> choice; switch (choice) { case 1: cout << "请输入姓名:"; string name, phone, carID; int days; cin >> name; cout << "请输入电话:"; cin >> phone; cout << "请输入要租的车牌号:"; cin >> carID; cout << "请输入租车天数:"; cin >> days; if (!carManager.getCars().empty()) { bool found = false; for (Car& car : carManager.getCars()) { if (car.getID() == carID && !car.getRented()) { found = true; rentalManager.rentCar(name, phone, carID, days); cout << "租车成功!" << endl; break; } } if (!found) { cout << "车辆不存在或已被租出!" << endl; } } else { cout << "当前没有车辆可供租用!" << endl; } break; case 2: cout << "请输入租车单号:"; string rentalID; cin >> rentalID; bool found = false; for (Rental& rental : rentalManager.getRentals()) { if (rental.getID() == rentalID) { found = true; rentalManager.returnCar(rentalID); cout << "还车成功!" << endl; break; } } if (!found) { cout << "租车单号不存在!" << endl; } break; default: cout << "无效的操作!" << endl; break; } break; case 3: cout << "1. 统计出租率" << endl; cout << "2. 统计出租费用" << endl; cout << "请选择操作:"; cin >> choice; switch (choice) { case 1: cout << "出租率:" << rentalManager.getRentRate() << endl; break; case 2: cout << "出租费用:" << rentalManager.getRevenue() << endl; break; default: cout << "无效的操作!" << endl; break; } break; case 4: return 0; default: cout << "无效的操作!" << endl; break; } } return 0; } ``` 以上代码实现了一个简单的汽车租赁管理系统,包含车辆基本信息管理、租车管理、统计功能等模块。车辆信息和租车信息均以文件形式存储,程序启动时自动读取文件,退出时自动保存。您可以根据自己的需求进行扩展和修改。
阅读全文

相关推荐

最新推荐

recommend-type

C#实现简单的汽车租赁系统

在本示例中,我们看到一个使用C#编程语言实现的简单汽车租赁系统。这个系统主要涉及到了面向对象编程的概念,如继承、多态、抽象类以及类的实例化。以下是对这些知识点的详细说明: 1. **继承**:继承是面向对象...
recommend-type

出租车公司信息管理系统

出租车公司信息管理系统是一个基于PowerBuilder和Access的信息管理系统,旨在提高出租车公司的工作效率和准确性。系统的开发过程遵循软件工程的方法,运用管理信息系统开发的原理和方法,结合管理思想,设计和实现了...
recommend-type

使用Python实现租车计费系统的两种方法

在本文中,我们将探讨如何使用Python编程语言来构建一个简单的租车计费系统。这个系统将根据用户输入的公里数计算所需的费用,模拟真实的出租车计费流程。以下是两种不同的实现方法。 **方法一** 该方法首先设定一...
recommend-type

汽车租赁管理系统需求分析规格说明书

汽车租赁管理系统需求分析规格说明书是为开发一个针对汽车租赁行业的管理系统的详细指南,旨在规范企业的运营,降低成本,提升效率。该系统的设计初衷是满足汽车租赁公司在处理租车客户信用验证及身份确认方面的需求...
recommend-type

yolov5s nnie.zip

yolov5s nnieyolov5-nnieyolov5s nnieYOLOv5 pytorch -> onnx -> caffe -> .wk 1、模型是yolov5s,将focus层替换成stride为2的卷积层。reshape和permute层也做了调整。具体的修改过程可以参考这个大佬的文章https://blog.csdn.net/tangshopping/article/details/1100386052、模型是在hi3559av100上跑的,mapper版本是1.2。3、用法mkdir buildcd buildcmake -DCMAKE_TOOLCHAIN_FILE=../hi3559.toolchain.cmake ..make -j4./yolo_nnie参考https://blog.csdn.net/tangshopping/article/details/110038605watermelooon/nnie_yolohttps://github.com/ultralytics/yolov5https://githu
recommend-type

JHU荣誉单变量微积分课程教案介绍

资源摘要信息:"jhu2017-18-honors-single-variable-calculus" 知识点一:荣誉单变量微积分课程介绍 本课程为JHU(约翰霍普金斯大学)的荣誉单变量微积分课程,主要针对在2018年秋季和2019年秋季两个学期开设。课程内容涵盖两个学期的微积分知识,包括整合和微分两大部分。该课程采用IBL(Inquiry-Based Learning)格式进行教学,即学生先自行解决问题,然后在学习过程中逐步掌握相关理论知识。 知识点二:IBL教学法 IBL教学法,即问题导向的学习方法,是一种以学生为中心的教学模式。在这种模式下,学生在教师的引导下,通过提出问题、解决问题来获取知识,从而培养学生的自主学习能力和问题解决能力。IBL教学法强调学生的主动参与和探索,教师的角色更多的是引导者和协助者。 知识点三:课程难度及学习方法 课程的第一次迭代主要包含问题,难度较大,学生需要有一定的数学基础和自学能力。第二次迭代则在第一次的基础上增加了更多的理论和解释,难度相对降低,更适合学生理解和学习。这种设计旨在帮助学生从实际问题出发,逐步深入理解微积分理论,提高学习效率。 知识点四:课程先决条件及学习建议 课程的先决条件为预演算,即在进入课程之前需要掌握一定的演算知识和技能。建议在使用这些笔记之前,先完成一些基础演算的入门课程,并进行一些数学证明的练习。这样可以更好地理解和掌握课程内容,提高学习效果。 知识点五:TeX格式文件 标签"TeX"意味着该课程的资料是以TeX格式保存和发布的。TeX是一种基于排版语言的格式,广泛应用于学术出版物的排版,特别是在数学、物理学和计算机科学领域。TeX格式的文件可以确保文档内容的准确性和排版的美观性,适合用于编写和分享复杂的科学和技术文档。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

【实战篇:自定义损失函数】:构建独特损失函数解决特定问题,优化模型性能

![损失函数](https://img-blog.csdnimg.cn/direct/a83762ba6eb248f69091b5154ddf78ca.png) # 1. 损失函数的基本概念与作用 ## 1.1 损失函数定义 损失函数是机器学习中的核心概念,用于衡量模型预测值与实际值之间的差异。它是优化算法调整模型参数以最小化的目标函数。 ```math L(y, f(x)) = \sum_{i=1}^{N} L_i(y_i, f(x_i)) ``` 其中,`L`表示损失函数,`y`为实际值,`f(x)`为模型预测值,`N`为样本数量,`L_i`为第`i`个样本的损失。 ## 1.2 损
recommend-type

如何在ZYNQMP平台上配置TUSB1210 USB接口芯片以实现Host模式,并确保与Linux内核的兼容性?

要在ZYNQMP平台上实现TUSB1210 USB接口芯片的Host模式功能,并确保与Linux内核的兼容性,首先需要在硬件层面完成TUSB1210与ZYNQMP芯片的正确连接,保证USB2.0和USB3.0之间的硬件电路设计符合ZYNQMP的要求。 参考资源链接:[ZYNQMP USB主机模式实现与测试(TUSB1210)](https://wenku.csdn.net/doc/6nneek7zxw?spm=1055.2569.3001.10343) 具体步骤包括: 1. 在Vivado中设计硬件电路,配置USB接口相关的Bank502和Bank505引脚,同时确保USB时钟的正确配置。
recommend-type

Naruto爱好者必备CLI测试应用

资源摘要信息:"Are-you-a-Naruto-Fan:CLI测验应用程序,用于检查Naruto狂热者的知识" 该应用程序是一个基于命令行界面(CLI)的测验工具,设计用于测试用户对日本动漫《火影忍者》(Naruto)的知识水平。《火影忍者》是由岸本齐史创作的一部广受欢迎的漫画系列,后被改编成同名电视动画,并衍生出一系列相关的产品和文化现象。该动漫讲述了主角漩涡鸣人从忍者学校开始的成长故事,直到成为木叶隐村的领袖,期间包含了忍者文化、战斗、忍术、友情和忍者世界的政治斗争等元素。 这个测验应用程序的开发主要使用了JavaScript语言。JavaScript是一种广泛应用于前端开发的编程语言,它允许网页具有交互性,同时也可以在服务器端运行(如Node.js环境)。在这个CLI应用程序中,JavaScript被用来处理用户的输入,生成问题,并根据用户的回答来评估其对《火影忍者》的知识水平。 开发这样的测验应用程序可能涉及到以下知识点和技术: 1. **命令行界面(CLI)开发:** CLI应用程序是指用户通过命令行或终端与之交互的软件。在Web开发中,Node.js提供了一个运行JavaScript的环境,使得开发者可以使用JavaScript语言来创建服务器端应用程序和工具,包括CLI应用程序。CLI应用程序通常涉及到使用诸如 commander.js 或 yargs 等库来解析命令行参数和选项。 2. **JavaScript基础:** 开发CLI应用程序需要对JavaScript语言有扎实的理解,包括数据类型、函数、对象、数组、事件循环、异步编程等。 3. **知识库构建:** 测验应用程序的核心是其问题库,它包含了与《火影忍者》相关的各种问题。开发人员需要设计和构建这个知识库,并确保问题的多样性和覆盖面。 4. **逻辑和流程控制:** 在应用程序中,需要编写逻辑来控制测验的流程,比如问题的随机出现、计时器、计分机制以及结束时的反馈。 5. **用户界面(UI)交互:** 尽管是CLI,用户界面仍然重要。开发者需要确保用户体验流畅,这包括清晰的问题呈现、简洁的指令和友好的输出格式。 6. **模块化和封装:** 开发过程中应当遵循模块化原则,将不同的功能分隔开来,以便于管理和维护。例如,可以将问题生成器、计分器和用户输入处理器等封装成独立的模块。 7. **单元测试和调试:** 测验应用程序在发布前需要经过严格的测试和调试。使用如Mocha或Jest这样的JavaScript测试框架可以编写单元测试,并通过控制台输出调试信息来排除故障。 8. **部署和分发:** 最后,开发完成的应用程序需要被打包和分发。如果是基于Node.js的应用程序,常见的做法是将其打包为可执行文件(如使用electron或pkg工具),以便在不同的操作系统上运行。 根据提供的文件信息,虽然具体细节有限,但可以推测该应用程序可能采用了上述技术点。用户通过点击提供的链接,可能将被引导到一个网页或直接下载CLI应用程序的可执行文件,从而开始进行《火影忍者》的知识测验。通过这个测验,用户不仅能享受答题的乐趣,还可以加深对《火影忍者》的理解和认识。