Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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:
Here is a begun-program outline to follow.
//Seminar cost in-class assignment //NAME: //NAME:
#include
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 6Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started