| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122597 | 左锶焜 | 07切比雪夫距离 | C++ | Compile Error | 0 MS | 0 KB | 392 | 2025-06-21 11:27:32 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; if(a>b){ cout<<abs(b); } eles{ cout<<abs(a); } return 0; }
Main.cc: In function 'int main()':
Main.cc:14:5: error: 'eles' was not declared in this scope
eles{
^