#include<cstdio> #include<iostream> #include<cmath> using namespace std; int main() { double a,b,c,d; cin >>a>>b>>c>>d; a=sqrt(pow(a-c,2)+pow(b-d,2)); printf("%.4lf",a); return 0; }
cmath sqrt 和 pow的用法