利用transform()
函数转换大小写 (首地址,尾地址,转换到地址,::tolower | ::toupper)
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
string a,b;
getline(cin,a);
getline(cin,b);
transform(a.begin(),a.end(),a.begin(),::tolower);
transform(b.begin(),b.end(),b.begin(),::tolower);
if(a>b) puts(">");
else if(a==b) puts("=");
else puts("<");
}