Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
56222 | zhangweiran | 整数大小比较 | C++ | Accepted | 0 MS | 244 KB | 184 | 2024-11-09 22:17:21 |
#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; }