选择他,是个不错的选#include
#include
#include
#include
#define N 5
struct PCB
{
char name[8]; //进程名称
int arrive_time; //到达时间
int run_time; //运行时间
int turnover_time; //周转时间
int finish_time; //完成时间
bool arrive; //在一个进程的执行过程中是否有其他进程到达
bool finished; //是否执行完
};
int main()
{
struct PCB pcb[N];
int i,j,k,short_index,short_index2;
int needtime; //作为与run_time比较参数
int totaltime=0;
int total=0; //判断一个进程在执行过程中是否有其他进程到达的参数
//下面是输入进程
for ( i=0;i
2021-11-29 16:46:58
126KB
JSF
1