竞赛
考级
正确答案如下(调查见后)(如果你在另外一些题解本人的调查中回复过,那么请你再回复一遍,因为只要凑足45个人就足够,不管有没有重复,病急乱投医嘛(笑)),好了废话少说,上代码: #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; } 因为语文老师这个寒假布置了一项作业,要求调查自己的爱好目前状况PPT(共要完成三个项目:1、调查有多少人了解自己的爱好;2、为什么这个爱好;3、写一篇关于自己爱好的作文),现在急需调查数据求大家回复(回复在评论区),万分感谢!!!
琮
YuQing1919
#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<<"<"; } }
qwerty1596
#include<bits/stdc++.h> using namespace std; int main(){ int x; int y; cin >> x; cin >> 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<<">"; }
180****6116
#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<<"="; } }
一只盖着被子
直接开始 #include<iostream> 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<iostream> using namespace std; int main(){ int a,b; cin>>a; cin>>b; if(a>b){ cout<<">"; } if(a<b){ cout<<"<"; } if(a==b){ cout<<"="; } return 0; } 二: #include<iostream> using namespace std; int main(){ 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<<"="; }
OX114514
四大Tian王
yy
拜拜~
Dream.Magic
#include<iostream> using namespace std; int main(){ long long x,y; cin>>x>>y; if(x>y){ cout<<">"; } else if(x<y){ cout<<"<"; } else{ cout<<"="; } }
G.LK
x,y=input().split() x=int(x) y=int(y) if x>y: print('>') elif x==y: print('=') else: print('<')
137****3875
#include <iostream> using namespace std; int main() { long long x,y; cin>>x>>y; if(x>y) cout<<">"<<endl; else if(x<y) cout<<"<"<<endl; else cout<<"="<<endl; return 0; }
葬仪_亡蝶舞
#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_
张柏畅畅
#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
#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<<"<"; } }
xzr
共37条