字符串判断大小 + 拼接
2023-07-27 09:20:26
发布于:浙江
5阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
string a,b,c;
cin>>a>>b;
if(a>b) c=a+b;
else c=b+a;
for(int i=1;i<c.length();i+=2){
cout<<c[i];
}
return 0;
}
这里空空如也
有帮助,赞一个