提交时间:2024-01-27 08:29:34
运行 ID: 129414
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c,d; cin>>a>>b>>c>>d; cout<<sqrt(pow(a-c,2)+pow(b-d,2))<<endl; return 0; }