Question: I need help with the flowchart. Fall 2018 CMSC 140 Programming Project 4: Days Out Concepts tested in this project -Learn to organize code within
I need help with the flowchart.
Fall 2018 CMSC 140 Programming Project 4: Days Out
Concepts tested in this project
-Learn to organize code within a function
-Learn to pass data to and return data from a function
-Use of loops
-Use of output file processing
Project Specifications
Input for this project:
the user must enter the number of employees in the company.
the user must enter as integers for each employee:
the employee number (ID)
the number of days that employee missed during the past year.
Input Validation:
Do not accept a number less than 1 for the number of employees.
Do not accept a negative number for the days any employee missed.
Be sure to print appropriate error messages for these items if the input is invalid.
Output: The program should display the following data:
display a students full name
display a due date
display the user full name
each employee number (ID) and the number of days missed should be written to the report file named "employeeAbsences.txt".
the average number of days a company's employees are absenting during the year should be written to the report file named "employeeAbsences.txt".
Processing Requirements
Create the following three functions that will be called by the main function:
A first function asks a user for the number of employees in the company. This value should be returned as an int. The function accepts no arguments.
A second function that does the following:
Asks the user to enter for the following information each employee:
the employee number (ID)
the number of days that employee missed during the past year.
Writes each employee number (ID) and the number of days missed to the output file.
The function returns the total of missed days as an int. Assume the employee number (ID) is 4 digits or fewer, but don't validate it.
The function accepts two arguments:
The name of the file stream object as a reference parameter of type ofstream
The number of employees in the company as int.
A third function calculates the average number of days absent.
The function takes two arguments:
the number of employees in the company
the total number of days absent for all employees during the year.
The function should return, as a double, the average number of days absent.
This function does not perform screen or file output and does not ask the user for input.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
