2 条题解
-
1
202502cj14周子祥 (周子祥) LV 8 @ 2025-06-07 17:07:13
#include<iostream>
using namespace std;
int main(){
int x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
cout << max(abs(x1-x2), abs(y1-y2));
return 0;
} -
-12024-06-29 12:17:45@
#include<iostream> using namespace std; int main(){ short x1, y1, x2, y2; cin >> x1 >> y1 >> x2 >> y2; cout << max(abs(x1-x2), abs(y1-y2)); return 0; }
- 1
信息
- ID
- 2708
- 难度
- 5
- 分类
- (无)
- 标签
- 递交数
- 38
- 已通过
- 15
- 通过率
- 39%
- 上传者