2023 C only Computing the fine for a speeding ticket Students will write an application to calculate speeding ticket fines | Assignment Collections
Computer Science 2023 Computing The Fine For A Speeding Ticket
2023 C only Computing the fine for a speeding ticket Students will write an application to calculate speeding ticket fines | Assignment Collections
Computing the fine for a speeding ticket
Students will write an application to calculate speeding ticket fines for any number infractions. For each ticket, the input to this program will be the following (1) actual speed, (2) speed limit, (3) whether the offense occurred in a work zone, in a residential district, or not and (4) the court fees. The court fees are the same through the run, it is asked to the user only once. The output should show the total amount for the ticket. Once one total fine has been computed, the user should be given the choice of processing another ticket or quit.
Speeding
Fine: $5 per mile over speed limit plus Court Fees
Speeding Highway Work Zone
Fine: $6 per mile over speed limit plus Court Fees
Speeding in a Residential District
Fine: $7 per mile over speed limit plus $200 plus Court Fees
Here is a typical session for this program:
Enter court fees: 62
Enter the type of speeding offense (1 for regular, 2 for highway, 3 for residential): 1
Enter the speed limit: 25
Enter the vehicle speed: 35
The total fine is $112
Enter 1 to enter another ticket or 0 to quit this fine calculator: 1
Enter the type of speeding offense (1 for regular, 2 for highway, 3 for residential): 3
Enter the speed limit: 55
Enter the vehicle speed: 65
The total fine is $332
Enter 1 to enter another ticket or 0 to quit this fine calculator: 0
Good bye.
The program needs to be structured using a class named FineCalculator that is in charge of computing the fine. The class declaration follows (no changes are allowed for this class definition):
class FineCalculator
{
public:
FineCalculator(int courtFees);
int getFine(int zone, int speedLimit, int actualSpeed) const;
private:
int _courtFees;
};
The getFine member function must not do any input or output, the only thing it does is computing the fine corresponding to the different parameters.
For this project, the grading rubrics that apply are Design, Functionality, and Test. You can include the test data in a block comment in the cpp file containing your main, you your can just add a simple text file.
We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.