Simulation of Print Server
I'm trying to write a code of a simulation of a print server (it's only a simulation using GUI or Text) and I need the help of experts.
Explanation of the simulation:
When running the program, the user must specify how many printers are included in the program. Then the program will create an array of printers with a linked list representing the print queue.
When the user gives a print command, the program will take the print job and sends it to the printer with the least jobs in its queue (load balancing).
The print job must disappear from the queue after 15 seconds.