Days Out Write a program that calculates the average number of days a company\'s
ID: 3678487 • Letter: D
Question
Days Out Write a program that calculates the average number of days a company's employees are absent. The program should have the following functions: A function called by main that asks the user for the number of employees in the company. This value should be returned as an int. (The function accepts no arguments.) A function called by main that accepts one argument: the number of employees in the company. The function should ask the user to enter the number of days each employee missed during the past year. The total of these days should be returned as an int. A function called by main that takes two arguments: the number of employees in the company and 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 output and does not ask the user for input.) Input Validation: Do not accept a number less than 1 for the number of employees. Do not accept a negative number for the Jays any employee missed.Explanation / Answer
c++ program
#include<iostream>
using namespace std;
int numemp_f();
int numdays_f(int num_emp);
double avgabs_f(int num_emp, int num_days);
int main()
{
int num_emp = 0;
int num_days = 0;
double avg_abs = 0.0;
cout << "Average employee absent days last year: " << avg_abs;
return 0;
}
int numemp_f()
{
int num_emp;
cout << "Enter # of Employees";
cin >> num_emp;
while(num_emp < 1)
{
cout << "Invalid, # of employees must be > 1.";
cout << "Enter # of Employees";
cin >> num_emp;
}
cout << "# of employees = " << num_emp;
}
int numdays_f(int e)
{
int num_days;
for(int e = 0; e = num_days; e++)
{
cout << "Enter # of days each employee missed last year";
cin >> num_days;
}
while(num_days < 0)
{
cout << "Invalid, # of days missed must be atleast 0.";
cout << "Enter # of days each employee missed last year";
cin >> num_days;
}
cout << "# of days missed = " << num_days;
}
double avgabs_f(int e, int d)
{
int num_emp;
int num_days;
double avg_abs;
avg_abs = (num_emp*365)/num_days;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.