ManoCode
ManoCode
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ManoCode的博客
全部文章
(共34篇)
题解 | #手机键盘#
#include <bits/stdc++.h> using namespace std; int main() { string s; int k[26] = {1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3,...
2024-08-21
0
74
题解 | #反序输出#
#include <bits/stdc++.h> using namespace std; int main(){ string a; while(cin >> a){ for(int i = a.length()-1;i>=0;i--...
2024-08-21
0
86
题解 | #约数的个数#
#include <bits/stdc++.h> using namespace std; int yueshu(int x){ if(x == 1) return 1; else if(x == 0) return 0; else { int ...
2024-08-21
0
95
题解 | #成绩排序#
#include <algorithm> #include <bits/stdc++.h> #include <vector> using namespace std; const int N = 100; struct stu{ int id; ...
2024-08-21
0
103
首页
上一页
1
2
3
4
下一页
末页