ysong想养只修狗
ysong想养只修狗
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ysong想养只修狗的博客
全部文章
(共63篇)
题解 | #skew数#
#include <iostream> #include <string> #include <cmath> using namespace std; int main() { string str; while (getline(cin, st...
2023-05-03
0
173
题解 | #字母统计#
#include <iostream> using namespace std; int cnt[26]; int main() { string str; while (getline(cin, str)) { for(int i = 0; i &l...
2023-05-03
0
205
题解 | #统计字符#
#include <iostream> using namespace std; int main() { string s1, s2; while (getline(cin, s1) && s1 != "#") { // 注意 while 处理多个 case ...
2023-05-03
0
193
题解 | #简单密码#
#include <iostream> using namespace std; int main() { string str; while(getline(cin, str) && str != "ENDOFINPUT") {//START 注:这里用cin>...
2023-05-03
0
152
题解 | #密码翻译#
#include <iostream> #include <string> using namespace std; /** *输入空格、回车参考链接:http://t.csdn.cn/lq5JY **/ char convert(char a){ if(a &g...
2023-05-03
0
256
题解 | #特殊乘法#
#include <iostream> #include <string> using namespace std; void mul(string s1, string s2){ int res = 0; for(int i = 0; i < s1....
2023-04-25
0
165
题解 | #找位置#
#include <cstdio> #include <iostream> #include <vector> #include <cstring> using namespace std; /** 参考题解 https://blog.nowcode...
2023-04-25
0
235
题解 | #打印极值点下标#
#include <iostream> using namespace std; const int N = 81; int a[N]; int main() { int n; while (cin >> n) { for(int i = 0;...
2023-04-23
0
190
题解 | #找最小数#
#include <iostream> #include <algorithm> using namespace std; const int N = 1001; struct P{ int x; int y; } a[N]; bool cmp(P p1,...
2023-04-23
0
182
题解 | #查找#
#include <iostream> #include <algorithm> using namespace std; const int N = 101; int a[N], b[N]; bool find(int a[], int n, int x){ in...
2023-04-23
0
243
首页
上一页
1
2
3
4
5
6
7
下一页
末页