Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. Below is a partial list of results. See your email for more details.
  2. ********************************************************************
  3. Results for Dataset 1
  4. Differences: 20
  5. There were 20 differences between your output and the correct output.
  6.  
  7. Below is Your Output, with line numbers added:
  8.  
  9. 1: Employee Management System is running...!
  10. 2: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  11. 3: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  12. 4: Please select any two employees by entering their indices, separated by comma:
  13. 5: 1.Adam, 2.Bill, 3.Zak, 4.Henry, 5.Peter
  14. 6: Job titles have been swapped.
  15. 7: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  16. 8: Please select any two employees by entering their indices, separated by comma:
  17. 9: 1.Adam, 2.Bill, 3.Zak, 4.Henry, 5.Peter
  18. 10: Job titles have been swapped.
  19. 11: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  20. 12: Invalid command!
  21. 13: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  22. 14: Please select any two employees by entering their indices, separated by comma:
  23. 15: 1.Adam, 2.Bill, 3.Zak, 4.Henry, 5.Peter
  24. 16: Invalid index! Please try again
  25. 17: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  26. 18: They are not equal!
  27. 19: Thanks for using Employee Management System!
  28. **********************************************************
  29.  
  30. Below is the Correct Output, with line numbers added:
  31.  
  32. 1: Employee Management System is running...!
  33. 2: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  34. 3: Employee list:
  35. 4: Adam : Software Engineer
  36. 5: Bill : Team Leader
  37. 6: Zak : Project Manager
  38. 7: Henry : Director
  39. 8: Peter : VP
  40. 9: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  41. 10: Please select any two employees by entering their indices, separated by comma:
  42. 11: 1.Adam, 2.Bill, 3.Zak, 4.Henry, 5.Peter
  43. 12: Job titles have been swapped.
  44. 13: Employee list:
  45. 14: Adam : VP
  46. 15: Bill : Team Leader
  47. 16: Zak : Project Manager
  48. 17: Henry : Director
  49. 18: Peter : Software Engineer
  50. 19: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  51. 20: Please select any two employees by entering their indices, separated by comma:
  52. 21: 1.Adam, 2.Bill, 3.Zak, 4.Henry, 5.Peter
  53. 22: Job titles have been swapped.
  54. 23: Employee list:
  55. 24: Adam : VP
  56. 25: Bill : Project Manager
  57. 26: Zak : Team Leader
  58. 27: Henry : Director
  59. 28: Peter : Software Engineer
  60. 29: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  61. 30: Invalid command!
  62. 31: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  63. 32: Please select any two employees by entering their indices, separated by comma:
  64. 33: 1.Adam, 2.Bill, 3.Zak, 4.Henry, 5.Peter
  65. 34: Invalid index! Please try again
  66. 35: Please enter L to list all employees, S to swap job titles of two employees, Q to quit!
  67. 36: They are equal!
  68. 37: Thanks for using Employee Management System!
  69. **********************************************************
  70.  
  71. Below is how to change your output to the correct output, with the required changes numbered:
  72.  
  73. Insert after Line 2: Employee list:
  74. Insert after Line 2: Adam : Software Engineer
  75. Insert after Line 2: Bill : Team Leader
  76. Insert after Line 2: Zak : Project Manager
  77. Insert after Line 2: Henry : Director
  78. Insert after Line 2: Peter : VP
  79. Insert after Line 6: Employee list:
  80. Insert after Line 6: Adam : VP
  81. Insert after Line 6: Bill : Team Leader
  82. Insert after Line 6: Zak : Project Manager
  83. Insert after Line 6: Henry : Director
  84. Insert after Line 6: Peter : Software Engineer
  85. Insert after Line 10: Employee list:
  86. Insert after Line 10: Adam : VP
  87. Insert after Line 10: Bill : Project Manager
  88. Insert after Line 10: Zak : Team Leader
  89. Insert after Line 10: Henry : Director
  90. Insert after Line 10: Peter : Software Engineer
  91. Insert after Line 17: They are equal!
  92. Delete Line 18: They are not equal!
  93.  
  94. **********************************************************
  95.  
  96.  
  97. ********************************************************
  98. Below is the output from the Compiler:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement