-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHiringProcess.cpp
More file actions
70 lines (57 loc) · 1.87 KB
/
Copy pathHiringProcess.cpp
File metadata and controls
70 lines (57 loc) · 1.87 KB
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
#include <iostream>
using namespace std;
int main() {
cout << "Define job description\n";
cout << "Send crew request to HR\n";
char isRegularHiring;
cout << " Is this a regular hiring process? (y/n): ";
cin >> isRegularHiring;
if (isRegularHiring == 'n' || isRegularHiring == 'N') {
cout << "Special hiring process\n";
cout << "Post job internally\n";
return 0;
}
char isResumeCandidate;
cout << " Is there a suitable candidate? (y/n): ";
cin >> isResumeCandidate;
if (isResumeCandidate == 'n' || isResumeCandidate == 'N') {
char isQualifiedResume;
cout << "Develop recruitment plan\n";
cout << "Place advertisements\n";
cout << "Collect applications\n";
cout << "Is there a suitable candidate? (y/n): ";
cin >> isQualifiedResume;
if (isQualifiedResume == 'n' || isQualifiedResume == 'N') {
cout << "Candidate not hired\n";
cout << "Return\n";
return 0;
}
cout << "Arrange candidate meeting\n";
} else {
cout << "Arrange candidate meeting\n";
}
cout << "Conduct pre-interview\n";
cout << "Setup interview question\n";
cout << "Conduct interview\n";
char referenceGood;
cout << "Good reference? (y/n): ";
cin >> referenceGood;
if (referenceGood == 'n' || referenceGood == 'N') {
cout << "Candidate not hired\n";
cout << "Return\n";
return 0;
}
cout << "Select candidate\n";
cout << "Evaluate pay rate\n";
cout << "Send Employment offer\n";
char offerConfirmed;
cout << "Candidate confirms offer? (y/n): ";
cin >> offerConfirmed;
if (offerConfirmed == 'n' || offerConfirmed == 'N') {
cout << "Candidate not hired\n";
cout << "Return\n";
return 0;
}
cout << "Hire candidate\n";
return 0;
}