Include flowchart for this code //C++ Code   #include #include using namespace std; /*Create a global variable of type ofstream for the output file*/ ofstream outfile;   /* * This function asks the user for the number of employees in the company.  This value should be returned as an int.  The function accepts no arguments (No parameter/input). */ int NumOfEmployees(); /* * accepts an argument of type int for the number of employees  in the company and returns the total of missed days as an int.  This function should do the following: Asks the user to enter the following information  for each employee: The employee number (ID) (Assume the employee number  is 4 digits or fewer, but don't validate it). 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  */ int TotDaysAbsent(int numberOfEmployees); /*  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. This function should return, as a double, the average number of days absent. */ double AverageAbsent(int numberOfEmp, int totalAbsent); //Function Definitions double AverageAbsent(int numberOfEmp, int totalAbsent) {     return (double)totalAbsent / numberOfEmp; } int TotDaysAbsent(int numberOfEmployees) {     int totalAbsentDays = 0;     int id, absentDays;     //open file     outfile.open("c:\cmsc140\employeeAbsences.txt ");     for (int i = 1; i <= numberOfEmployees; i++)     {         cout << "Enter Employee" << i << " id: ";         cin >> id;         cout << "Enter Number of absent days for Employee" << i << ": ";         cin >> absentDays;         //Write data to file         outfile << id << " " << absentDays << endl;         //Calculate total         totalAbsentDays += absentDays;     }     outfile.close();     return totalAbsentDays; } int NumOfEmployees() {     cout << "Enter number of employees: ";     int emp;     cin >> emp;     return emp; } int main() {     int numberOfEmployees = NumOfEmployees();     int totalDaysAbsent = TotDaysAbsent(numberOfEmployees);     double avgAbsent = AverageAbsent(numberOfEmployees, totalDaysAbsent);     cout << "Average Absent: " << avgAbsent << endl;     return 0; }

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter8: I/o Streams And Data Files
Section: Chapter Questions
Problem 3PP: (Data processing) Write a C++ program that allows the user to enter the following information from...
icon
Related questions
Question

Include flowchart for this code

//C++ Code

 

#include<iostream>
#include<fstream>
using namespace std;
/*Create a global variable of type ofstream for the output file*/
ofstream outfile;
 
/*
* This function asks the user for the number of employees in the company. 
This value should be returned as an int. 
The function accepts no arguments (No parameter/input).
*/
int NumOfEmployees();
/*
* accepts an argument of type int for the number of employees 
in the company and returns the total of missed days as an int. 
This function should do the following:
Asks the user to enter the following information 
for each employee:
The employee number (ID) (Assume the employee number 
is 4 digits or fewer, but don't validate it).
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 
*/
int TotDaysAbsent(int numberOfEmployees);
/*
 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.
This function should return, as a double, the average number of days absent.
*/
double AverageAbsent(int numberOfEmp, int totalAbsent);

//Function Definitions

double AverageAbsent(int numberOfEmp, int totalAbsent)
{
    return (double)totalAbsent / numberOfEmp;
}
int TotDaysAbsent(int numberOfEmployees)
{
    int totalAbsentDays = 0;
    int id, absentDays;
    //open file
    outfile.open("c:\cmsc140\employeeAbsences.txt ");
    for (int i = 1; i <= numberOfEmployees; i++)
    {
        cout << "Enter Employee" << i << " id: ";
        cin >> id;
        cout << "Enter Number of absent days for Employee" << i << ": ";
        cin >> absentDays;
        //Write data to file
        outfile << id << " " << absentDays << endl;
        //Calculate total
        totalAbsentDays += absentDays;
    }
    outfile.close();
    return totalAbsentDays;
}
int NumOfEmployees()
{
    cout << "Enter number of employees: ";
    int emp;
    cin >> emp;
    return emp;
}
int main()
{
    int numberOfEmployees = NumOfEmployees();
    int totalDaysAbsent = TotDaysAbsent(numberOfEmployees);

    double avgAbsent = AverageAbsent(numberOfEmployees, totalDaysAbsent);
    cout << "Average Absent: " << avgAbsent << endl;
    return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 4 images

Blurred answer
Knowledge Booster
File Input and Output 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
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning