WonderFF
WonderFF
全部文章
分类
归档
标签
去牛客网
登录
/
注册
WonderFF的博客
全部文章
(共4篇)
应该是比较容易看懂的,思路清晰,我是第一
#include<iostream> #include<string> #include<algorithm> #include<stack> #include<math.h> using namespace std; int main()...
2024-03-17
0
215
#字符串连接# 直接输出就行了,感觉不是上机题
//感觉这个题应该不是一个上机的题 //法一,直接输出,这种方法算钻了空子吧 #include<iostream> using namespace std; int main() { string str1, str2; while (cin >> str1 >&g...
2024-03-16
1
241
#怪异的洗牌#用队列纯暴力解,比较绕,应该能简化
#include<iostream> #include<string> #include<algorithm> #include<queue> #include<vector> using namespace std; int main()...
2024-03-16
0
269
题解 | #A + B#
#include<iostream>//很多人想复杂了,这个题格式都是固定的,直接一个个输入就行了 #include<string> using namespace std; int strToNum(string str) { if (str == "zero&...
2024-03-13
7
218