Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Instructions The statements in the provided program found in main.cpp are not in the correct order. Rearrange the statements so that the program outputs the

Instructions

The statements in the provided program found in main.cpp are not in the correct order. Rearrange the statements so that the program outputs the total time an employee spent on the job each day. The program asks the user to:

enter the employees name, the arrival time (arrival hour, arrival minute, AM or PM), departure time (departure hour, departure minute, AM or PM).

The program also allows the user to run the program as long as the user wishes. After rearranging the statements, your program must be properly indented.

#include #include using namespace std; int main() { string employeeName; int arrivalHr; int departureHr; int departureMin; bool departureAM; char response; char discard; char isAM; cout << "This program calculates the total time spent by an " << "employee on the job." << endl; cout << "To run the program, enter (y/Y: "; cin >> response; cout << endl; cin.get(discard); while (response == 'y' || response == 'Y') { cout << "Enter employee's name: "; getline(cin, employeeName); cout << endl; if (isAM == 'y' || isAM == 'Y') arrivalAM = true; else arrivalAM = false; cout << "Enter departure hour: "; cin >> departureHr; cout << endl; cout << "Enter departure minute: "; cin >> departureMin; cout << endl; cout << "Enter (y/Y) if departure is before 12:00PM: "; cin >> isAM; cout << endl; if (isAM == 'y' || isAM == 'Y') departureAM = true; else departureAM = false; cout << employeeName << endl; timeOnJob(arrivalHr, arrivalMin, arrivalAM, departureHr, departureMin, departureAM); cout << "Enter arrival hour: "; cin >> arrivalHr; cout << endl; cout << "Enter arrival minute: "; cin >> arrivalMin; cout << endl; cout << "Enter (y/Y) if arrival is before 12:00PM: "; cin >> isAM; cout << endl; int arrivalMin; bool arrivalAM; cout << "Run program again (y/Y): "; cin >> response; cout << endl; cin.get(discard); } return 0; } void timeOnJob(int arvHr, int arvMin, bool arvIsAM, int depHr, int depMin, bool depIsAM) { int arvTimeInMin; int depTimeInMin; int timeOnJobInMin; else if (arvIsAM == true && depIsAM == false) { arvTimeInMin = arvHr * 60 + arvMin; depTimeInMin = depHr * 60 + depMin; timeOnJobInMin = (720 arvTimeInMin) + depTimeInMin; cout << "Time spent of job: " << timeOnJobInMin / 60 << " hour(s) and " << timeOnJobInMin % 60 << " minutes." << endl; } else if (arvTimeInMin <= depTimeInMin) { timeOnJobInMin = depTimeInMin arvTimeInMin; cout << "Time spent of job: " << timeOnJobInMin / 60 << " hour(s) and " << timeOnJobInMin % 60 << " minutes." << endl; } else cout << "Invalid input." << endl; if ((arvIsAM == true && depIsAM == true) || (arvIsAM == false && depIsAM == false)) { cout << "Invalid input." << endl; } void timeOnJob(int arvHr, int arvMin, bool arvIsAM, int depHr, int depMin, bool depIsAM); }

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

Step: 3

blur-text-image

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

Sams Teach Yourself Beginning Databases In 24 Hours

Authors: Ryan Stephens, Ron Plew

1st Edition

067232492X, 978-0672324925

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago