1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
// CST116F2021-Lab4.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <iomanip>
using namespace std;
void GetInput(int& hours, int& minutes, int& seconds);
void DisplayTime(int& hours_display, int& minutes_display, int& seconds_display);
int main()
{
int hours = 0, minutes = 0, seconds = 0;
GetInput(hours, minutes, seconds);
DisplayTime(hours, minutes, seconds);
}
void GetInput(int& hours_input, int& minutes_input, int& seconds_input)
{
do
{
cout << "Please enter the current hour from 0 to 23: ";
cin >> hours_input;
} while (hours_input < 0 || hours_input > 23);
do
{
cout << "Please enter the current minutes from 0 to 59: ";
cin >> minutes_input;
} while (minutes_input < 0 || minutes_input > 59);
do
{
cout << "Please enter the current seconds from 0 to 59: ";
cin >> seconds_input;
} while (seconds_input < 0 || seconds_input > 59);
}
void DisplayTime(int& hours_display, int& minutes_display, int& seconds_display)
{
//set hours to 12 hours time before cout
string suffix;
if (hours_display > 12 && hours_display != 0)
{
hours_display -= 12;
suffix = " P.M.";
}
else if (hours_display == 12)
suffix = " P.M.";
else if (hours_display == 0)
{
hours_display += 12;
suffix = " A.M.";
}
else
suffix = " A.M.";
cout << "\nThe current time in standard time is " << hours_display << ":" << setw(2) << setfill('0') << minutes_display << ":" << setw(2) << setfill('0') << seconds_display << suffix;
if (suffix == " A.M." && hours_display == 12)
hours_display = 0;
else if (suffix == " P.M.")
hours_display += 12;
cout << "\nThe current time in military time is " << setw(2) << setfill('0') << hours_display << setw(2) << setfill('0') << minutes_display << ":" << setw(2) << setfill('0') << seconds_display;
}
//p.214
//void GetInput(float& salary, int& years_service);
//void CalcRaise(float& salary, int years_service);
//int CalcBonus(int years_service);
//void PrintCalculations(int years_service, float salary, int bonus);
//
//int main()
//{
// int years_service = 0, bonus = 0;
// float salary = 0.0;
//
// GetInput(salary, years_service);
// CalcRaise(salary, years_service);
// bonus = CalcBonus(years_service);
// PrintCalculations(years_service, salary, bonus);
//}
//
//void GetInput(float& sal_input, int& years_service_input)
//{
// do
// {
// cout << "Please input the salary: ";
// cin >> sal_input;
// } while (sal_input <= 0);
//
// do
// {
// cout << "Please input the years of service: ";
// cin >> years_service_input;
// } while (years_service_input <= 0);
//}
//
//void CalcRaise(float& sal_raise, int years_service)
//{
// if (years_service > 10)
// sal_raise *= 1.1;
// else if (years_service <= 10 && years_service >= 5)
// sal_raise *= 1.05;
// else
// sal_raise *= 1.02;
//}
//
//int CalcBonus(int years_service)
//{
// int bonus = 0;
//
// bonus = (years_service / 2) * 500;
// return bonus;
//}
//
//void PrintCalculations(int years_service, float salary, int bonus)
//{
// cout << "Due to your " << years_service << "years of service, your new salary is $" << salary << " and your bonus is $" << bonus << ".\n";
//}
//pg.207
//float average(int, int, int, float);
//int main()
//{
// float avg = 0;
// int input1 = 0, input2 = 0, input3 = 0;
//
// do
// {
// avg = average(input1, input2, input3, avg);
// } while (avg == 0);
//
// cout << "The average of these values is " << avg;
//}
//
//float average(int input1, int input2, int input3, float avg)
//{
// do
// {
// cout << "Please input the first value: ";
// cin >> input1;
// } while (input1 <= 0);
//
// do
// {
// cout << "Please input the second value: ";
// cin >> input2;
// } while (input2 <= 0);
//
// do
// {
// cout << "Please input the third value: ";
// cin >> input3;
// } while (input3 <= 0);
//
// avg = (input1 + input2 + input3)/3;
//
// return avg;
//}
|