
PAT乙级
slyzs
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PAT 1002 写出这个数
#include<iostream> #include<cstring> //#include<string.h> #include<algorithm> using namespace std; int main() { char a[99999]; //数组开得太大会直接结束,这个已经代表9999位数原创 2019-03-08 19:31:44 · 143 阅读 · 0 评论 -
1004 成绩排名
#include<iostream> #include<algorithm> using namespace std; struct student { char name[15]; char id[15]; int grade; } s[100]; bool cmp(student x,student y); int main() { int n...原创 2019-03-08 20:26:10 · 267 阅读 · 0 评论