what

chenjiangxue 逗比 2019-11-24 20:57:01 2020-03-05 20:06:27 6
#include <iostream>
using namespace std;
int main() {
    int a, b, c;
    cin >> a >> b >> c;
    if (a > b > c)
        cout << "YES";
    else
        cout << "NO";
    return 0;
}
{{ vote && vote.total.up }}

共 4 条回复

nnn

可能错了哦···

#include <iostream>

using namespace std;
int main() {
    int a, b, c;
    cin >> a >> b >> c;
    if (a > b && b > c)
        cout << "YES";
    else
        cout << "NO";
    return 0;
}
pikahuan 逗比

你怎么可以学习python的王八语句!!!

root 站长

if (a > b && b > c)

Duke

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