靓仔兴
靓仔兴
全部文章
题解
归档
标签
去牛客网
登录
/
注册
靓仔兴的博客
全部文章
/ 题解
(共3篇)
KY29谁是你的潜在朋友
#include<iostream> #include<algorithm> using namespace std; int main(){ int N,M; cin>>N; cin>>M; int book[M];...
2021-01-31
0
526
KY9 成绩排序
#include<iostream> #include<algorithm> using namespace std; struct Student{ int no; int score; }; bool compared(Student std1,Stud...
2021-01-30
10
809
KY2 成绩排序 自测结果是对的,但是不知道为什么牛客网批改为错误
# include<iostream> # include<algorithm> using namespace std; struct Student{ string name; int score; }; bool Ascending(Student ...
2021-01-30
8
2774