竞赛
考级
#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<iostream> using namespace std; int main(){ int a, b; cin >> a>> b; if(a > b){ cout << ">"; } if(a < b){ cout << "<"; } if(a == b){ cout << "="; } } 这不就结了吗
131****9790
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; if(n>m){ cout<<">"; }else if(n==m){ cout<<"="; }else{ cout<<"<"; } return 0; }
孙星轩
#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; }
霄
#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<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; }
138****1080
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; }
91VIP
答案如下
邵逸宸
#include <bits/stdc++.h> using namespace std; int main() { int x,y; cin >> x >> y; if(x > y) { cout << ">"; } if(x == y) { cout << "="; } if(x < y) { cout << "<"; } return 0; }
WangYuHao2334
#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; }
139****5700
zsy
有事找大号
#include<iostream> using namespace std; int main(){ int x,y; cin>>x>>y; if(x>y){ cout<<'>'; } if(x==y){ cout<<'='; } if(x<y){ cout<<'<'; }
#include c++ dxe
#include <iostream> using namespace std; int main(){ int x,y; cin>>x; cin>>y; if(x>y){ cout<<">"; } if(x==y){ cout<<"="; } if(x<y){ cout<<"<"; } return 0; }
༺ཌༀ薛博文ༀད༻
共61条