Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
82471 张黄源 31忽略大小写的字符串比较 C++ Accepted 1 MS 276 KB 392 2024-07-13 11:35:45

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { string a,b; getline(cin,a); getline(cin,b); for(int i=0; i<a.size(); i++) { if(a[i]>='A'&&a[i]<='Z') { a[i] += 32; } } for(int 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; }