Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

//Example program #include #include #include using namespace std; //Rocket cost consts const int aCostPerKm = 250.00; //Cost of the trip per km for a class

image text in transcribed
//Example program #include  #include  #include  using namespace std; //Rocket cost consts const int aCostPerKm = 250.00; //Cost of the trip per km for a class A rocket const int aCostPerPound = 1000; //Cost to get one pound of matter into orbit for a class A rocket const int bCostPerKm = 325.00;//Cost of the trip per km for a class B rocket const int bCostPerPound = 1250; //Cost to get one pound of matter into orbit for a class B rocket //Astrononical distance consts const int distToMoon = 384400; //Dist to moon (minimum trip length) in km const int distToAstBelt = 350000000; //Dist to asteroid belt (maximum trip length) in km //--------------------------------------------------------------------------- // Name: GetBoundedInput // Parameters: Question, string, the YN question to ask. LowerBound/Upperbound, the bounds within // which the user input must fall. // Returns: input; the number the user entered. range is (Lowerbound, Upperbound) // Purpose: This function returns the user's bounded response to a question //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // Name: CalculateCost // Parameters: const int totalWeight, const long totalDist, const char rocketClass, ref double cost // Returns: none // Purpose: Calculate the total cost of the trip given the user's input // and the given global parameters and assign it to cost //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // Name: CalculateClass // Parameters: long totalDist // Returns: char class. A for lighter rockets and B for stringent needs // Purpose: Calculate the class of the rocket based on its distance and needs. // Class B rockets are required for >100 passengers or trips longer than 1M km. // Call GetBoundedInput to get the number of users(max 250) and return 'A' or 'B' //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // Name: BookAnotherRide // Parameters: ref char cont // Returns: none // Purpose: This function asks the user if they want to continue, checks to // ensure that the user enters a 'Y' or a 'N', and returns the answer //--------------------------------------------------------------------------- int main() { int totalWeight = 0; long totalDist = 0; double totalCost = 0; char rocketClass = '\0'; char goAgain = 'N'; // these two lines print numbers with ',' after 3 digits locale mylocale(""); cout.imbue(mylocale); do { cout 
1. Problem Statement The objective of this programming assignment is to become familiar with creating C+ functions. You will be modifying an existing program: hw4b.app Your task is to write the required functions to complete the functionality inside of main You're booking trips for the Inner Solar System Transit Service corporation. Youl schedule trips of up to 250 people and a total of 5000 kgs of cargo from Earth to anywhere from the moon to the inner asteroid belt. Amazing breakthroughs in technology and financial engineering have rendered the cost per km of the trip to $25 km for class 'A, rockets and $32km for the taster class B' rockets Your goal is to modify hw4b.app to accomplish the goals set forth inside of main 2. Design: Think about what the main program is doing. It is already writen for you and you should not change it at all (other than removing the comment marks before function calls). Function descriptions are already provided at the top of the program. Begin by compiling and running the unmodified program to see what it does. Your goal is to create the functions that make the main program work For each function, look at how it is called by the main program. What kinds of parameters are being passed to the functions? Are these pass by value(const) or pa by reference (8)? What return types are needed? Start with GetBoundedinput. Uncomment the line that assigns a value to totalWeight First, create a version of the function that is syntactically correct with parameter passing that just does a cout and returns a fixed integer value, eg 100, each tme Next, fil in GetBoundedinput so it is fully functional, including error checking. Comple and test it unil you are satisfied that it is correct. Then, move on to the next function Here's an example run of the program: Welcome to the Inner Solar System Space Transit System. You can book trips for passengers and cargo from the moon to the inner asteroid belt. Let's get started What is the total weight of the passsengers and cargo? (Max 5000 kgs; no comma): 2000 What is the distance in km to your destination? (384,000 km to 350,000,000km; no commas): 900000 Enter the number of passenger seats you require (250 maxj: 190 The cost for your trip on your class B rocket will cost $587 million. Do you want to book another ride? Enter (YIN): n 3. Implementation: The main program is writen for you. You just need to create the functions so that the function calls in the main program work to solve the overal probliem. All of the function descriptions are provided. You do not need additional functions. You should not modity the main program other than removing the comment symbols

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