2021年9月4日

1002 写出这个数 (20 point(s))

摘要: #include <bits/stdc++.h> using namespace std; int main() { int sum = 0; stack<int> s; string str, pingyin[10]{"ling", "yi", "er", "san", "si", "wu", " 阅读全文

posted @ 2021-09-04 19:23 Atl212 阅读(34) 评论(0) 推荐(0)

1004 成绩排名 (20 point(s))

摘要: #include <bits/stdc++.h> using namespace std; struct Stu{ string name, id; }; int main() { int n, max = 0, min = 100; map<int, Stu> stu; cin >> n; whi 阅读全文

posted @ 2021-09-04 12:02 Atl212 阅读(34) 评论(0) 推荐(0)

1058 选择题 (20 point(s))

摘要: #include <bits/stdc++.h> using namespace std; struct Question{ int score, num, cor; set<char> copt; }; int main() { // 批改选择题 指出错误人数最多题目 // 输入 学生人数 多选题 阅读全文

posted @ 2021-09-04 11:49 Atl212 阅读(50) 评论(0) 推荐(0)

导航