The trustees of a small college are considering voting a pay raise for their faculty members. They want to grant a 4 percent raise for those earning more than $70,000.00, a 7 percent raise for those earning more than $50,000.00 and 5.5 percent raise for all others. However, before doing so, they want to know how much this will cost. Do NOT use any logical operator or anything that looks like one in the program. You will not receive credit for the program if you do. No input, processing or output should happen in the main function. All work should be delegated to other functions. The program should have at least 4 functions (main and developerInfo
The trustees of a small college are considering voting a pay raise for their faculty members. They want to grant a 4 percent raise for those earning more than $70,000.00, a 7 percent raise for those earning more than $50,000.00 and 5.5 percent raise for all others. However, before doing so, they want to know how much this will cost.
Do NOT use any logical operator or anything that looks like one in the program. You will not receive credit for the program if you do.
No input, processing or output should happen in the main function. All work should be delegated to other functions. The program should have at least 4 functions (main and developerInfo not included) and the output sent to an output file, Program6- output.txt. Include the recommended minimum documentation for each function. Every function in your program should be limited to performing a single, well-defined task, and the name of the function should express that task effectively
void developerInfo();
void calcFacultyNewSalary();
int main()
{
cout << fixed
<< showpoint
<< setprecision(2);
developerInfo();
calcFacultyNewSalary();
system("PAUSE");
return 0;
}
void calcFacultyNewSalary()
{
double salary; // declare variables
double raise;
double newSalary;
double totalOldSalary = 0;
double totalNewSalary = 0;
double totalRaise = 0;
double percent = 0;
int counter = 0;
ifstream inFile; // create an input file object
inFile.open("Program6.txt"); // open the file for read
}
void developerInfo()
{
cout << "Name: <Your full name>" << endl;
cout << "Course: COSC 1337
cout << "Program: Six"
<< "\n\n";
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images