I am totally lost if anyone can help Parking Ticket Simulator For this assignmen
ID: 3638326 • Letter: I
Question
I am totally lost if anyone can helpParking Ticket Simulator
For this assignment you will design a set of classes that work together to simulate a police officer issuing a parking ticket. The classes you should design are:
• The ParkedCar Class: This class should simulate a parked car. The class’s responsibilities are:
o To know the car’s make, model, color, license number, and the number of minutes that the car has been parked
• The ParkingMeter Class: This class should simulate a parking meter. The class’s only responsibility is:
o To know the number of minutes of parking time that has been purchased
• The ParkingTicket Class: This class should simulate a parking ticket. The class’s responsibilities are:
o To report the make, model, color, and license number of the illegally parked car
o To report the amount of the fine, which is $25 for the first hour or part of an hour that the car is illegally parked, plus $10 for every additional hour or part of an hour that the car is illegally parked
o To report the name and badge number of the police officer issuing the ticket
• The PoliceOfficer Class: This class should simulate a police officer inspecting parked cars. The class’s responsibilities are:
o To know the police officer’s name and badge number
o To examine a ParkedCar object and a ParkingMeter object, and determine whether the car’s time has expired
o To issue a parking ticket (generate a ParkingTicket object) if the car’s time has expired
The simulator should implement the following
1. Create 10 parked cars and 10 parking meters.
2. Randomly setting parking meters to a paid time ranging from 30 minutes to 5 hours (30 minute increments)
3. Display the status of all cars and meters prior to simulation, and during the simulation display the tickets. You choose the best output layout.
4. The simulation takes place at a random time ranging from 1 hour to 5 hours (30 minute increments) and the officer issues tickets for each parked car that has an expired meter.
5. The simulation should allow the user to repeatedly execute it until time expires.
Explanation / Answer
#include #include using namespace std; int m=0, min, k[10], c; class parkedcar //class holds data of the car in parking { string make; int model; string color; string licnumber; int minutesparked; public: parkedcar() { make=" "; model=0; licnumber=" "; color=" "; minutesparked=0; } void setmake(string mk) { make=mk; } void setmodel(int ml) { model=ml; } void setcolor(string c) { color=c; } void setlicnumber(string l) { licnumber=l; } void setminutesparked(int mnp) { minutesparked=mnp; } string getmake() const { return (make); } int getmodel() const { return (model); } string getcolor() const { return (color); } string getlicnumber() const { return (licnumber); } int getminutesparked() const { return (minutesparked); } void print(); }; void parkedcar:rint() //outside class definition { coutRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.