Using C++ to: Handling Priorities with Linked Lists: Design a class called suppo
ID: 3755163 • Letter: U
Question
Using C++ to:
Handling Priorities with Linked Lists:
Design a class called supportTicket that handles information about reported IT support issues. A ticket includes an id number, the location of the equipment (e.g., building and room number), a short description of the issue, and a priority level. A valid priority level is a value from 1-5. Tickets are services based on their priority level, from highest to lowest. More than one ticket may have the same priority level. However, when entering an item into the list that has the same priority as another item, the newest item should come after any previously entered items with the same priority. When a ticket is serviced, it is removed from the list.
Implement a menu system that allows the program user to add a support ticket, service a ticket (remove it from list), and list active tickets in order of priority.
Deliverable: submit
A copy of your source code in a text file
Screen shots of test cases showing your program meets problem specifications
Explanation / Answer
#include using namespace std; struct student { char name[50]; int roll; float marks; }; int main() { student s; cout s.marks; coutRelated Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.