14 条题解
- 1
信息
- ID
- 601
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 5
- 标签
- (无)
- 递交数
- 454
- 已通过
- 167
- 上传者
#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 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 a,b; cin>>a>>b; if(a>b) { cout<<">"; } else if(a==b) { cout<<"="; } else { cout<<"<"; } return 0; }