提交时间:2024-02-10 21:55:13

运行 ID: 40478

#include<iostream> using namespace std; int main() { char a[80],b[80]; gets(a); gets(b); strlwr(a); strlwr(b); int k=strcmp(a,b); if(k<0) cout<<"<"; else if(k==0) cout<<"="; else cout<<">"; }