Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6174 | xuchengzhe | 判断大小 | C++ | 编译错误 | 0 MS | 0 KB | 205 | 2022-11-27 16:06:01 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b if(a>b){ cout<<“>”; }else if(a<b){ cout<<“<”; }else{ cout<<"="; }