https://www.jb51.cc/csharp/1192816.html

编程之家收集整理的这篇文章主要介绍了c++如何比较两个字符串?编程之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d3362619-189b-4235-8a1d-b57112462b19/a06785af091bcf6c56abb66474729d71.jpg

推荐教程:《C视频教程

c++如何比较两个字符串?

c++两个字符串比较的方法

1、首先,定义一个整型变量j,保存判断的结果。

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/16b24e3d-66b9-4e99-a0d7-ff3c9c3b43d1/c7cd032dff57ad372c382730007cac62.png

2、接着,定义两个字符串变量,保存判断的字符串。

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/5db02c73-6325-44c4-9143-532c96cde13c/f6d2c8e6f91c09e4b39f070fc6feaee0.png

3、输入两个字符串,保存在变量s1和s2中。

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/a07104e8-af71-454c-96a6-d952105f7ace/9b0c9131ae570a072589db457714316b.png

4、比较字符串s1和s2的大小,保存在变量j中。

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/7ceed372-63ad-4123-8874-01bbde8ce856/5bc60dfe4acce659b4d59d1edc4e08b8.png

5、根据判断结果j的值,输出两个字符串的比较结果。

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/141a198c-5660-40cb-ad4c-aaf5e44bbf90/4ba5f8c0ed07b585359c95646fb88497.png

6、用compare函数比较两个字符串,当s1大于s2时返回值大于0,当s1等于s2时返回值等于0,当s1小于s2时返回值小于0。

总结

以上是编程之家为你收集整理的c++如何比较两个字符串?全部内容。