| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 117842 | 赵梓渊 | 07a+b>c | C++ | Compile Error | 0 MS | 0 KB | 173 | 2025-04-20 13:27:42 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin >> a >> b >>C; if (a>b>c) { cout << "YES"; } else { cout << "NO"; } return 0; }
Main.cc: In function 'int main()':
Main.cc:5:18: error: 'C' was not declared in this scope
cin >> a >> b >>C;
^
Main.cc:6:7: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
if (a>b>c) {
^