Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Help with C++ program, PLEASE use and do not alter the starting code and include the given instructions. Thank you! #include #include const int FIRST_STAGE_MILEAGE

Help with C++ program, PLEASE use and do not alter the starting code and include the given instructions. Thank you!

#include

#include

const int FIRST_STAGE_MILEAGE = 50000;

const int CARBON_MONOXIDE = 1;

const int HYDROCARBON = 2;

const int NITROGEN_OXIDE = 3;

const int NONMETHANE_HYDROCARBON = 4;

const double CARBON_MONOXIDE_ALLOWED1 = 3.4;

const double CARBON_MONOXIDE_ALLOWED2 = 4.2;

const double HYDROCARBON_ALLOWED1 = 0.31;

const double HYDROCARBON_ALLOWED2 = 0.39;

const double NITROGEN_OXIDE_ALLOWED1 = 0.4;

const double NITROGEN_OXIDE_ALLOWED2= 0.5;

const double NONMETHANE_HYDROCARBON_ALLOWED1 = 0.25;

const double NONMETHANE_HYDROCARBON_ALLOWED2 = 0.31;

using namespace std;

void outputMenu ();

//function prototypes to get allowable level and determine if within

bounds

double getAllowableLevel (double gramsPerMileAllowed1, double

gramsPerMileAllowed2, int odometer);

int main (int argc, char *argv[])

{

int pollutant;

double gramsPerMile;

int odometer;

bool compliant;

double allowableGramsPerMile;

outputMenu();

cout

cin >> pollutant;

cout

cin >> gramsPerMile;

cout

cin >> odometer;

switch (pollutant)

{

case CARBON_MONOXIDE:

allowableGramsPerMile =

getAllowableLevel(CARBON_MONOXIDE_ALLOWED1, CARBON_MONOXIDE_ALLOWED2,

odometer);

break;

case HYDROCARBON:

allowableGramsPerMile = getAllowableLevel(HYDROCARBON_ALLOWED1,

HYDROCARBON_ALLOWED2, odometer);

break;

case NITROGEN_OXIDE:

allowableGramsPerMile = getAllowableLevel(NITROGEN_OXIDE_ALLOWED1,

NITROGEN_OXIDE_ALLOWED2, odometer);

break;

case NONMETHANE_HYDROCARBON:

allowableGramsPerMile =

getAllowableLevel(NONMETHANE_HYDROCARBON_ALLOWED1,

NONMETHANE_HYDROCARBON_ALLOWED2, odometer);

break;

}

string compliance;

compliant = gramsPerMile

if (compliant)

compliance = "within";

else

compliance = "exceeds";

cout

allowableGramsPerMile

cin.ignore();

cin.get();

}

void outputMenu ()

{

cout

cout

cout

cout

hydrocarbons"

}

//Given an odometer reading, returns the allowable level

double getAllowableLevel (double gramsPerMileAllowed1, double

gramsPerMileAllowed2, int odometer)

{

if (odometer

{

return gramsPerMileAllowed1;

}

else

{

return gramsPerMileAllowed2;

}

}image text in transcribedimage text in transcribed

Specification Complete a program that has a user enter a pollutant choice, a number of grams of the pollutant emitted per mile, and an odometer reading (0-100000) Output an indication of whether or not they are compliant with the following regulations: carbon monoxide hydrocarbons nitrogen oxides non-methane hydrocarbons 0.25 grams/mile 0.31 grams/mile first 50,000 miles second 50,000 miles 3.4 grams/mile 4.2 grams/mile 0.31 grams/mile 0.39 grams/mile 0.4 grams/mile0.5 qrams/mile A sample run is shown here 1 Carbon monoxide 2 Hydrocarbons (3> Nitrogen oxides 4 Non-methane hydrocarbons a> Quit Enter choice: 1 Enter grans emitted per nile: 3.2 Enter odoneter reading: 77000 Enissions within allowable level of 4.2 grans/mile 1 Carbon monoxide 2) Hydrocarbons (3> Nitrogen oxides Non-methane hydrocarbons Quit Enter choice 2 Enter grans emitted per nile: 25 Enter odoneter reading: 23456 Enissions within allowable level of .31 grans/mile 1 Carbon monoxide 2) Hydrocarbons 3> Nitrogen oxides 4 Non-methane hydrocarbons a Quit Enter choice: 3 Enter choice:3 Enter grans emitted per nile: . Enter odoneter reading: 100100 Mileage 100100 must be within 8-100000 niles 1 Carbon monoxide 2> Hydrocarbons (3 Nitrogen oxides 4 Non-methane hydrocarbons (a) Quit Enter choice: Your program must 1. Not change any of the given code. 2. Use the defined constant variables for any constant values in your program. 3. Create additional constant variables to use when checking the mileage boundaries (50000 miles and 100000 miles). 4. Output an indication that an invalid odometer reading has been entered (outside of the range of 0-100000). 5. Use the switch statement started in the program for your decision structure. 6. Have at least one other user defined function. One possibility is the following function that determines the allowable level for a particular pollutant: double getAllowableLevel (double gramsPerMileAllowed1, double gramsPerMileAllowed2, int odometer)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions