Visual Studio c++
Make sure it runs and add picture of console screen and
comments
1. Read a file that contains a list of applicants and their
skill-set, where each skill is separated by a
single white space character, as in the following example:
Ahmed c++ java
Ayesha c c++ assembly
Ali c++ java
Salman java javascript python
Sara python javascript
Implement classes Applicant and Skill, considering appropriate
relationship between the two, in
order to capture the information read from the file.
2. Use inheritance and polymorphism to implement skill matching
strategies such as MatchAll,
MatchAny, MatchAtleast, etc. For instance:
matchall({“c++”, “java”}): Ahmed, Ali
matchany({“c++”, “java”}): Ahmed, Ayesha, Ali, Salman
matchatleast(2, {“c++”, “java”, “assembly”}): Ahmed, Ayesha,
Ali
Visual Studio c++ Make sure it runs and add picture of console screen and comments 1. Read a file that contains a list o
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am