牛客568792594号
牛客568792594号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客568792594号的博客
全部文章
(共64篇)
题解 | #密码翻译#
#include <bits/stdc++.h> using namespace std; int main(){ string s; getline(cin, s); int n = s.size(); for (int i=0; i<n; i++){ if (s...
2024-02-16
0
183
题解 | #首字母大写#
#include <bits/stdc++.h> using namespace std; int main(){ string s; while(getline(cin , s)){ for (int i=0; i<s.size(); i++){ if (i =...
2024-02-16
0
150
题解 | #反序输出#
#include <bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){ reverse(s.begin(), s.end()); cout << ...
2024-02-16
0
183
题解 | #求最大最小数#
#include <bits/stdc++.h> using namespace std; int main(){ int n; while (scanf("%d", &n)!=EOF){ vector<int> a; for ...
2024-02-16
0
155
首页
上一页
1
2
3
4
5
6
7
下一页
末页