Question: In C++ please: Here is a begun-program outline to follow. //Seminar cost in-class assignment //NAME: //NAME: #include using namespace std; const int BASE_FEE = 100;

In C++ please:

In C++ please: Here is a begun-program outline to follow. //Seminar cost

Here is a begun-program outline to follow.

//Seminar cost in-class assignment //NAME: //NAME:

#include using namespace std;

const int BASE_FEE = 100; const int MID_FEE = 80; const int TOP_FEE = 60;

int main() {

double feePerPerson = 0; int personsRegistered;

cout > personsRegistered;

//Calculate and output - your code here

return 0;

}

Range Routine Task 6 Falcon Seminars wants a program that displays the amount of money a company owes for a seminar. The fee per person is based on the number of people the company registers: Number of Registrants 1 through 4 5 through 10 11 or more 100 S80 For example, if the company registers 7 people, they owe 7 80 $560. If the user enters a number that is less than or equal to 0, the program should display an appropriate error message. have started this program and the outline is Test run cases: How many tests MINIMUM are required to show that all of your ranges are defined correctly? At their boundaries? (I think it can be done with 6...or 7) ANSWER IN THE TASKS textbox what do you think the partitions are and how do you suggest testing them? Attach your code and at least 3 test runs to Task 6

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!