解题思路:
注意事项:
字符串比较函数strcmp的比较,两个字符串自左向右逐个字符相比(按ASCII值大小相比较),
直到出现不同的字符或遇’\0’为止。
基本形式为strcmp(str1,str2),若str1=str2,则返回零;若str1<str2,则返回负数;若str1>str2,则返回正数
原型:extern int strcmp(const char *s1,const char * s2);
注意不能比较string类
参考代码:
#include<iostream> #include<string> #include<cstring> using namespace std; int main() { char s1[1000]; char s2[1000]; cin>>s1; cin>>s2; int flag=strcmp(s1,s2); if(flag>0) cout<<"1"; else if(flag<0) cout<<"-1"; else cout<<"0"; return 0; }
0.0分
1 人评分
母牛的故事 (C语言代码)浏览:1409 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:747 |
【数组的距离】 (C语言代码)浏览:787 |
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:613 |
数组输出 (C语言代码)错误???浏览:602 |
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:693 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:699 |
Pascal三角 (C语言代码)浏览:707 |
1392题解(大数相加)浏览:640 |
A+B for Input-Output Practice (II) (C语言代码)浏览:622 |