0
0
0
0
欧阳语聪
资深守护
资深守护
if(a>b){ cout<<">"; } else if(a<b){ cout<<"<"; } else{ cout<<"="; }
0
0
0
0
张非艾
修练者
修练者
int x,y; cin>>x>>y; if(x>y) cout<<">"<<endl; else if(x<y) cout<<"<"<<endl; else cout<<"="<<endl;
0
0
0
0