竞赛
考级
54188((((官方正版挂壁猴
#include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; if(x<y){ cout<<"<"; }else if(x==y){ cout<<"="; }else{ cout<<">"; } return 0; }
佐助(互关)
#include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<">"; }else if(a==b){ cout<<"="; }else if(a<b){ cout<<"<"; } return 0; }
吴子铉
#include<bits/stdc++.h> using namespace std; int main (){ int a,b; cin >> a >> b ; if(a>b){ cout << ">"; } if(a==b){ cout << "="; } if(a<b){ cout << "<"; } return 0; }
当年挥墨
有事找大号
#include<bits/stdc++.h> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y){ cout<<'>'; } else if(x==y){ cout<<'='; } else if(x<y){ cout<<'<'<<endl; } return 0; }
o
#include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; if(x>y) cout<<'>'; else if(x<y) cout<<'<'; else cout<<'='; return 0; }
~Lyney~
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<">"; }else if(a==b){ cout<<"="; }else{ cout<<"<"; } return 0; }
UKE君
私密马赛
Tian
acgoacgo
共51条
提交答案之后,这里将显示提交结果~