- 分享
2024/1/7 11:28
- 2024-1-7 11:28:43 @
#include <iostream>
using namespace std;
int main(){
char a,b;
cin>>a>>b;
if (a<b){
cout<<a<<">"<<b<<endl;
}else if(a>b){
cout<<a<<"<"<<b<<endl;
}else{
cout<<a<<"="<<b<<endl;
}
return 0;
}
0 条评论
目前还没有评论...