2021年9月12日

1062 最简分数 (20 point(s))

摘要: // 2 points #include <bits/stdc++.h> using namespace std; int gcd(int a, int b){ return b ? gcd(b, a % b) : a; } int main() { int n1, m1, n2, m2, k; s 阅读全文

posted @ 2021-09-12 23:29 Atl212 阅读(81) 评论(0) 推荐(0)

1073 多选题常见计分法 (20 point(s))

摘要: #include <bits/stdc++.h> using namespace std; struct Question{ double score, num, cor; set<char> copt; map<char, int> fault; }; int main() { // 输入 学生人 阅读全文

posted @ 2021-09-12 16:03 Atl212 阅读(59) 评论(0) 推荐(0)

导航