2 条题解
-
22020222尹祖雪 (2020122尹祖雪) LV 6 @ 2021-11-05 14:31:39
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
if(x<=y&&x<=z&&y<=z)cout<<"YES";
else cout<<"NO";\return 0;
} -
02021-11-06 20:52:25@
#include<bits/stdc++.h>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
if(x<=y&&x<=z&&y<=z)cout<<"YES";
else cout<<"NO";return 0;
}
- 1
信息
- ID
- 1706
- 难度
- 3
- 分类
- (无)
- 标签
- 递交数
- 268
- 已通过
- 129
- 通过率
- 48%
- 被复制
- 2
- 上传者