Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
37356 | IKUN(ZHC) | 忽略大小写的字符串比较 | C++ | Accepted | 0 MS | 236 KB | 309 | 2024-01-20 11:48:48 |
#include<bits/stdc++.h> using namespace std; int main(){ char ns[81],nsl[81]; cin>>ns; cin>>nsl; strcmp(ns,nsl); if(ns-nsl==16||-16){ cout<<"="; return 0; } if(strcmp(ns,nsl)=='<'){ cout<<"<"; }else if(strcmp(ns,nsl)=='='){ cout<<"="; }else{ cout<<">"; } return 0; }