The statements in the following program 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 employee’s name, the arrival time (arrival hour, arrival minute,AMor PM), and departure time (departure hour, departure minute, AMor PM). The programalso 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);
}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.