~Marienbader
~Marienbader
全部文章
分类
题解(24)
归档
标签
去牛客网
登录
/
注册
~Marienbader的博客
全部文章
(共23篇)
cpp
简单粗暴,注意细心看了讨论后发现可以直接一一对应直接翻译,不用这么多ifelse, 妙啊! #include<iostream> #include<string> using namespace std; int main() { string str; w...
cpp
2020-02-20
1
870
cpp
思路要保持清晰几个条件分函数写纯粹考察代码能力point:substr和find #include<iostream> #include<string> using namespace std; bool checkchar(string str)//包括大小写字母.数字....
cpp
2020-02-20
20
1427
cpp
#include<iostream> using namespace std; int main() { int a; cin>>a; int count=0; while(a!=0) { int b=a%2; ...
cpp
2020-02-10
0
634
cpp sort函数自定义cmp
#include<iostream> #include<string> #include<algorithm> using namespace std; bool cmp(string a,string b) { //return a.compare(b)...
cpp
2020-02-10
2
1080
字符串栈
给过了,但是最后输出的时候,最后一个后面应该没有空格?但是牛客网给过了,emm #include<iostream> #include<stack> //还是用字符串栈了! using namespace std; int main() { string str; ...
cpp
2020-02-10
3
933
reverse函数
#include<iostream> #include<string> #include<algorithm> using namespace std; int main() { string str; cin>>str; re...
cpp
2020-02-10
0
670
转为string 做
#include<iostream> #include<string> #include<algorithm> using namespace std; int main() { string str; int a; cin>>...
cpp
2020-02-10
0
644
cpp
#include<iostream> #include<string> using namespace std; int main() { //不同字符的个数,所以要去重!!! string str; getline(cin,str); int...
cpp
2020-02-10
0
526
cpp #int转string用string的+合成最后输出,注意处理多组测试用例,!temp%10的位置顺序
#include<iostream> #include<string> using namespace std; int main() { int arr[11]; int a; string str; int temp=0; whil...
cpp
2020-02-10
0
692
cpp不需要每个元素都换行
就是找输入数的质因子,不用判断素数啥的 #include<iostream> using namespace std; int main() { long a; while(cin>>a) { while(a!=1) {...
cpp
2020-02-10
8
1587
首页
上一页
1
2
3
下一页
末页