It's a C++ program to implement the CPU Scheduling Algorithm:
Priority Algorithm non-preemptive to solve any type of priority problems.
The main goal of the project is to improve my theoretical,technical,
and practical skills in Operating Systems.
- Program ask the user about the number of processes.
- Process’s arrival time, burst time, and priority number are
defined by user during run time. - The right sequence of processes is printed according to
the priority of each process. - The program calculate the waiting time for each process
and the average waiting time for all processes. - it draws the Gantt chart also