竞赛
考级
#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
请根据自身情况来看题解,不要适得其反。
suyuhao_
*学好三目运算符走遍天下
C+Mouger+xhx
张柏畅畅
#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
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 {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 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(){ int a,b; cin>>a>>b; if(a>b) cout<<">"; if(a<b) cout<<"<"; if(a==b) 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 << '<'; }
黄厚泽(最强和平管理者)C++
#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; }
130****2038
acgo
枫岚
共52条