2 条题解
-
1240224cj马敬杰 (124马敬杰) LV 5 @ 2024-04-03 20:46:40
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a>b)
cout<<">";
if(a<b)
cout<<"<";
if(a==b)
cout<<"=";
return 0;
} -
-12021-12-13 09:50:58@
#include<iostream>
using namespace std;
int main()
{
long long a,b;
cin>>a>>b;
if(a<b)
cout<<"<";
else
{
if(a==b)
cout<<"=";
else
cout<<">";
}
return 0;
}
- 1
信息
- ID
- 2334
- 难度
- 4
- 分类
- (无)
- 标签
- 递交数
- 268
- 已通过
- 121
- 通过率
- 45%
- 被复制
- 2
- 上传者