~Marienbader
~Marienbader
全部文章
题解
归档
标签
去牛客网
登录
/
注册
~Marienbader的博客
全部文章
/ 题解
(共19篇)
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
1081
字符串栈
给过了,但是最后输出的时候,最后一个后面应该没有空格?但是牛客网给过了,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
684
cpp不需要每个元素都换行
就是找输入数的质因子,不用判断素数啥的 #include<iostream> using namespace std; int main() { long a; while(cin>>a) { while(a!=1) {...
cpp
2020-02-10
8
1587
cpp解法使用append和substr的两种用法
注意:不足8个和14个剩余6个,是相同子问题 #include<iostream> #include<string> using namespace std; int main() { string str; int less=0; while(cin...
cpp
2020-02-10
28
1642
首页
上一页
1
2
下一页
末页