摘要: #include"stdio.h"#include"stdlib.h" typedef struct PCB //定义进程控制块 { char ID[3]; //进程号 char name[10]; //进程名 char state; ... 阅读全文