Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
129594 邓卓谦 判断两数大小 C++ 解答错误 66 0 MS 244 KB 212 2024-01-27 09:05:31

Tests(2/3):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; if(a<b){ cout<<"a<b";} else if(a=b){ cout<<"a""=""b";} else if(a>b){ cout<<"a>b";} return 0; }


测评信息: