| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected