This is a C++ program. 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

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

This is a C++ program.

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 3 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education