竞赛
考级
#include <iostream> using namespace std; int main() { long long x,y; cin>>x>>y; if (x>y){ cout<<'>'; } if (x==y){ cout<<'='; } if (x<y){ cout<<'<'; } return 0; }
/程泊远/ 被困惠州蓝湖集中营
请根据自身情况来看题解,不要适得其反。
suyuhao_
*学好三目运算符走遍天下
C+Mouger+xhx
#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 <<"<"; } }
666
张柏畅畅
x,y=input().split() x=int(x) y=int(y) if x>y: print('>') elif x==y: print('=') else: print('<')
137****3875
#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<<"<"; return 0; }
CXL c++
no
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; if(a>b){ cout<<">"; } else if(a<b){ cout<<"<"; } else{ cout<<"="; } return 0; }
对方正在输入...
#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 <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 << "<"; } return 0; }
都是以实玛丽的错
#include <bits/stdc++.h> using namespace std; int main (){ long long a,b; cin>>a>>b; if (a>b){ cout<<">"; }else if(a==b){ cout<<"="; }else if(a<b){ cout<<"<"; } return 0; }
MINECRAFT
#include <iostream> #include <bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x>>y; while(true){ if(x<y){ cout<<"<"; return 0; } else if(x==y){ cout<<"="; return 0; } else{ cout<<">"; return 0; } } return 0; }
1*5
#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 {cout << '<';} return 0; }
西安好市民(鸗)
#include<iostream> using namespace std;int main(){ int x,y; cin>>x>>y; if(x>y)cout<<">"<<endl;else if(x<y)cout<<"<"<<endl;else if(x=y)cout<<"="<<endl; return 0;}
🕈.👎.☝✌💧❄☜☼
#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; }
138****7867
#include<bits/stdc++.h> using namespace std; int main(){ long long n,m; cin>>n>>m; if(n>m){ cout<<">"; }else if(n==m){ cout<<"="; }else{ cout<<"<"; } return 0; }
139****3066
#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<<"<"; return 0; }
mktgzjesw yhn,k
#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; }
霄
共56条