牛客637766371号
牛客637766371号
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
牛客637766371号的博客
全部文章
(共3篇)
题解 | #计算某字母出现次数#
#include<iostream> #include<string> using namespace std; int main() { string str; int res = 0; while (getline(cin, str)) { ...
2021-08-05
0
314
题解 | #位数求和#
#include<iostream> #include<string> #include<vector> using namespace std; long long sum(int n, int m) { // write code here ...
2021-08-04
0
492
题解 | #凯撒密码#
#include<iostream> #include<string> #include<vector> using namespace std; string decode(string str, int d) { // write code here...
2021-08-04
0
485