2011年9月2日
摘要: "Couse.h"#ifndef COURSE_H#define COURSE_H#include<string>#include<iostream>#include<iomanip>#include<fstream>#include<vector>using namespace std;class Course{private: string courseName; double score; bool isBixiu;public: Course *next; //构造函数 Course(string name 阅读全文
posted @ 2011-09-02 20:52 geeker 阅读(387) 评论(0) 推荐(0) 编辑