llf算法程序

时间:2015-12-01 16:52:59
【文件属性】:

文件名称:llf算法程序

文件大小:5KB

文件格式:TXT

更新时间:2015-12-01 16:52:59

llf

llf算法程序 #include #include using namespace std; class Process {public: Process(); Process(string n,float ct,float rt,int num):name(n),cycletime(ct),runtime(rt),number(num){} string getName(); float getCycletime(); float getRuntime(); int getNumber(); void setName(); void setCycletime(); void setRuntime(); void setNumber(); private: string name; float cycletime; float runtime; int number;//执行次数 };


网友评论