一、string类型
- 头文件:include
- 用scanf,要用取地址符&
- 如果要进行比较要使用compare函数
- 可能使用scanf会出现段错误题中测试点,可以改用cin
string s1, s2;
s1.compare(s2) == 0;
如果相等就是返回0
二、char数组
- 头文件:include
- 比较函数使用strcmp();
- 在scanf,可以不使用取地址符。
char s1[12], s1[13];
strcmp(s1, s2) == 0;
(s1 > s2) > 0;
(s1 < s2) < 0;