Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hey! I need someone to please provide the Full working code that will work and compile for this project for the following class. Thanks! Fall

Hey! I need someone to please provide the Full working code that will work and compile for this project for the following class. Thanks!

Fall 2018 CMSC 140 Programming Project 4: Intro to programming

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 Description

Write a program that calculates the average number of days a company's employees are absent during the year and outputs a report on a file named "employeeAbsences.txt".

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.

Sample Screen Output:

Sample File Output:

Project Submission Requirements

Deliverables:

Flowchart for the Program. Intermediate deliverable: Program design: Flowchart for the Program due one week after project is given. November 4, 2018

C++ files (source code)

Output file

Documentation file

Deliverables Format:

The above deliverables will be packaged as follows:

Intermediate deliverable: Program design: Flowchart for the Program due one week after project is given. November 4, 2018

C++ files (source code): FirstInitialLastName_Pr.cpp

Output file called employeeAbsences.txt

Documentation: Word document(docx) or .pdf including:

Title page including student name, project title and number

Flowchart

Pseudocode

Test plan (table) with at least 2 different data sets and screenshots supporting each test case

Lessons Learned Section describing any issues you experienced during work on the project and how you solve them.

Comments: Add comment to variables, formulas, or any part of the program with the purpose of making the source code easier to understand.

Indentation: It must be consistent throughout the program and must reflect the control structure.

Proper naming conventions: Variable and method names need to be descriptive to show the role of the variable or method. Avoid single letter names. Constant names should be all upper-case, variable names should use camel case (i.e. start with lower case, with subsequent words starting with upper case: hoursWorked for example) or underscores to separate words (i.e. items_orde.red)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Mary Z. Last

8th edition

1285427106, 978-1285427102

More Books

Students also viewed these Databases questions