方方啊喂
方方啊喂
全部文章
分类
归档
标签
去牛客网
登录
/
注册
方方啊喂的博客
全部文章
(共2篇)
题解 | 约数的个数
#include<bits/stdc++.h> using namespace std; int judgeMent(int x){ int count = 0; for(int i=1;i< sqrt(x);i++){ if(x%i == 0) count++; } ...
2025-02-27
1
40
题解 | 成绩排序
#include<bits/stdc++.h> using namespace std; struct Student{ string name; int score; int flag; }arr[100001]; bool cmp1(Student x,Student y)...
2025-02-27
0
45