Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
39230 | littletwleve | 整数大小比较 | C++ | Accepted | 0 MS | 240 KB | 186 | 2024-01-31 11:38:24 |
#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; }