Problem4589--逻辑与练习

4589: 逻辑与练习

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

如果a>b并且a>c,则输出1

a=3, b=2, c=13>2并且3>1同时成立。输出1

#include <iostream>
using namespace std;
int main()
{
    int a, b, c;
    cin >> a >> b >> c;
    if (   )
        cout << 1;
    return 0;
}

Sample Input Copy

3 2 1

Sample Output Copy

1

Source/Category