提交时间:2024-02-10 22:09:27
运行 ID: 40489
#include<bits/stdc++.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> using namespace std; int main() { char a[80],b[80]; char* c; char *d; scanf("%s%s",a,b); c=strlwr(a); d=strlwr(b); int k=strcmp(c,d); if(k<0) { cout<<"<"; } else if(k==0) { cout<<"="; } else { cout<<">"; } return 0; }