Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
40481 lnx 忽略大小写的字符串比较 C++ Compile Error 0 MS 0 KB 232 2024-02-10 21:56:36

Tests(0/0):


#include<iostream> #include<cstring> 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<<">"; }


Judgement Protocol: