Create a global variable of type ofstream for the output file. Use this variable to open the file employeeAbsences.txt in your program to write data to it. A global variable is defined above the main function and its scope is within the entire program. A function called NumOfEmployees. 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). A second function called TotDaysAbsent that accepts an arguments 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 (employeeAbsences.txt). ( Refer to Sample File Output ) A third function called AverageAbsent that 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. This function does not perform screen or file output and does not ask the user for input.   NOTE: The location of the file employeeAbsences.txt created by your program will be in the same folder as your .cpp source file. Make sure to check your file system directory to see if the file is getting created as the result of running your program and its format matches with the format shown in the Sample File output format. Also avoid declaring an absolute path for employeeAbsences.txt, for example e:\\ employeeAbsences.txt or c:\\cmsc140\\employeeAbsences.txt in your program. In C++ i have only 15 min left do not copy from other site it is wrong there please send me correct else i downvote if you had not knowledge skip it

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

Create a global variable of type ofstream for the output file. Use this variable to open the file employeeAbsences.txt in your program to write data to it. A global variable is defined above the main function and its scope is within the entire program.

A function called NumOfEmployees. 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).
A second function called TotDaysAbsent that accepts an arguments 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 (employeeAbsences.txt). ( Refer to Sample File Output )

A third function called AverageAbsent that 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.
This function does not perform screen or file output and does not ask the user for input.

 

NOTE:

The location of the file employeeAbsences.txt created by your program will be in the same folder as your .cpp source file. Make sure to check your file system directory to see if the file is getting created as the result of running your program and its format matches with the format shown in the Sample File output format.
Also avoid declaring an absolute path for employeeAbsences.txt, for example e:\\ employeeAbsences.txt or c:\\cmsc140\\employeeAbsences.txt in your program.

In C++

i have only 15 min left

do not copy from other site it is wrong there

please send me correct else i downvote

if you had not knowledge skip it

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

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