练笔--字符串,向量和数组2
Posted taoliu_alex
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练笔--字符串,向量和数组2相关的知识,希望对你有一定的参考价值。
编写一段程序读入两个字符串,比较其是否相等并输出结果。如果不相等,输出较大的那个字符串。改写程序,比较输入的两个字符串是否等长,如果不等长,输出长度较大的那个字符串。
1 在C++中比较方便比较两个字符串
#include <iostream> #include<string> using namespace std; int main() { string s1; string s2; cout<<"请输入两个字符串"<<endl; cin>>s1; cin>>s2; if(s1==s2) { cout<<"两个字符串相等,字符串"<<endl; } else if(s1>s2) { cout<<"s1比较大"<<s1<<endl; } else cout<<"s2比较大"<<s2<<endl; return 0; }
2 比较长度
#include <iostream> #include<string> using namespace std; int main() { string s1; string s2; cout<<"请输入两个字符串"<<endl; cin>>s1; cin>>s2; int a=s1.size(); int b=s2.size(); if(a==b) { cout<<"两个字符串相等"<<endl; } else if(a>b) { cout<<"a比较长"<<s1<<endl; } else cout<<"b比较长"<<s2<<endl; return 0; }
以上是关于练笔--字符串,向量和数组2的主要内容,如果未能解决你的问题,请参考以下文章