WsjjsZ
WsjjsZ
全部文章
分类
归档
标签
去牛客网
登录
/
注册
WsjjsZ的博客
TA的专栏
52篇文章
0人订阅
多多练习C++
52篇文章
357人学习
全部文章
(共87篇)
题解 | #字符串加解密#
来自专栏
#include <iostream> #include <string> using namespace std; int main() { string str1; cin>>str1; //cout<<str1<&...
2023-02-26
0
261
题解 | #坐标移动#
来自专栏
#include <iostream> #include <string> #include <vector> #include <stdlib.h> using namespace std; int main() { string str;...
2023-02-26
0
240
题解 | #求int型正整数在内存中存储时1的个数#
来自专栏
#include <iostream> using namespace std; int main() { int number; int count=0; cin>>number; while(number>1){ if(number...
2023-02-26
0
250
题解 | #字符串排序#
来自专栏
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; string word; vector<...
2023-02-26
0
235
题解 | #句子逆序#
来自专栏
#include <iostream> #include <vector> using namespace std; int main() { vector<string> vec; string word; while(cin>...
2023-02-26
0
214
题解 | #字符串反转#
来自专栏
#include <iostream> using namespace std; int main() { string str; cin>>str; for(auto i=str.rbegin();i!=str.rend();++i){ ...
2023-02-26
0
224
题解 | #数字颠倒#
来自专栏
#include <iostream> using namespace std; int main() { int number; cin>>number; if(number!=0) while(number>0){ ...
2023-02-26
0
308
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页