MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / getdata

Method getdata

Lab_17/Education.cpp:19–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 HPQ = 0;
18 }
19 void getdata() {
20 cout << "\n1. Undergraduate 2. Graduate 3. Masters Degree 4. PHD\n";
21 cout << "Enter Educational Qualification: " ;
22 cin >> HPQ;
23 if (HPQ == 1 || HPQ == 2 || HPQ == 3 || HPQ == 4) {
24 }
25 else {
26 cout << "Invalid Educational Qualification. Try one more time.\n";
27 //Sleep(0700); Sleep(0700);
28 Education::getdata();
29 }
30 }
31
32 void showdata() {
33 if (HPQ == 1) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected