提交时间:2024-01-27 08:25:57

运行 ID: 129398

#include <bits/stdc++.h> using namespace std; int main() { double x1,y1,x2,y2; cin>>x1>>y1>>x2>>y2; cout<<int(sqrt(pow((x1-x2),2)+pow((y1-y2),2))); }