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

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

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 Programming Fundamentals II << endl;
cout << "Program: Six"
<< "\n\n";
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY