Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145649 王一德 07切比雪夫距离 C++ Compile Error 0 MS 0 KB 271 2026-01-25 17:36:04

Tests(0/0):


Code:

#include<iostream> #include<cmath> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; int x=abs(a-c); int y=abs(b-d); if(x>y){ cout<<x; }else{ cut<<y; } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:6: error: 'cut' was not declared in this scope
      cut<