Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. for (x = 0; x < 500; x++) {//starts and the first char of the resume, then moves to the next
  2. for (z = 0; z < 30; z++) {//runs through the first word
  3. if (resumeArray[x][z] == keywordArray[y][z]) {//if the word matches the keyword, then it's true
  4. if(resumeArray[x][0] == keywordArray[y][0]){
  5. if(resumeArray[x][z] == ' ')
  6. keywordCount++;//if it's a true statement, then increase the keyword count
  7. }
  8. }
  9. }
  10. }
  11. y++;//move on to the next keyword
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement