Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122396 刘珩宇 31忽略大小写的字符串比较 C++ Accepted 1 MS 280 KB 582 2025-06-15 18:32:22

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int i,s=1; string a,b; getline(cin,a); getline(cin,b); for(i=0;i<a.size();i++){ if(a[i]>='A'&&a[i]<='Z'){ a[i]+=32; } } for(i=0;i<b.size();i++){ if(b[i]>='A'&&b[i]<='Z'){ b[i]+=32; } } if(a>b){ cout<<'>'; } else if(a<b){ cout<<'<'; } else{ cout<<'='; } return 0; }