提交时间:2024-01-21 20:52:08
运行 ID: 37598
#include <bits/stdc++.h> using namespace std; int main(){ char a[85], b[85]; gets(a); gets(b); strlwr(a); strlwr(b); if(a > b){ cout << ">"; }else if(a < b){ cout << "<"; }else{ cout << "="; } return 0; }