easeoff
easeoff
全部文章
分类
归档
标签
去牛客网
登录
/
注册
easeoff的博客
全部文章
(共7篇)
题解 | 完数
#include <iostream> #include<bits/stdc++.h> using namespace std; int main() { int n; while (cin >> n) { for (int j ...
2025-03-20
0
19
题解 | 字母统计
#include <iostream> #include<map> using namespace std; int main() { string str; while(getline(cin,str)) { map<cha...
2025-03-17
0
31
题解 | 字符串的反码
#include <iostream> #include<vector> using namespace std; int main() { string str; cin>>str; vector<char> vec; fo...
2025-03-05
0
32
题解 | 成绩排序
#include <iostream> #include <random> #include<vector> #include<algorithm> using namespace std; struct student { int num;...
2025-03-03
1
37
题解 | 守形数
#include <iostream> #include<string> #include<algorithm> using namespace std; int main() { int n; while(cin>>n){ ...
2025-03-02
1
36
题解 | 成绩排序
#include <iostream> #include <vector> #include <algorithm> using namespace std; struct student { string name; int score; }; ...
2025-03-02
1
26
题解 | 字符串连接
#include <stdio.h> #include <string.h> int main() { int i; char str1[300], str2[100], str[402]; scanf("%s %s", str1,...
2025-02-21
1
45