首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
graduate专题
1080. Graduate Admission 解析
录取的问题。 先给各个成绩进行排序,然后给出排名。 排名相同的,可以超额。 #include <iostream>#include <algorithm>#include <vector>#include <cstring>#define MAX 110using namespace std;int n, m, k;struct appNode {int id;int ge;int
阅读更多...
1480: 多重继承派生(4)--person、student、teacher和graduate类
1480: 多重继承派生(4)--person、student、teacher和graduate类 Description Person类包含私有成员数据姓名name(string),编号code(int)和出生年月日。Student类包含私有成员数据姓名name(string),编号code(int),出生年月日和分数score(int)。Teacher类包含私有成员数据姓名na
阅读更多...