摘要: grade.h#ifndef GRADE_H#define GRADE_H#include<string>#include<vector>using namespace std;class grade{ public: struct student { string name; int score; }; void menu(); void init(); void inputScoreAndName(); void display(); private: vector<st... 阅读全文
posted @ 2012-08-10 19:22 propheteia 阅读(682) 评论(0) 推荐(0) 编辑