解题思路:
注意事项:
参考代码:
#include<iostream>
#include<iomanip>
#include<math.h>
using namespace std;
int main()
{
double x1,y1,x2,y2,s;
while (cin >> x1>> y1>> x2>> y2)
{
s = (x1 - x2)*(x1 - x2) + (y1 - y2)*(y1 - y2);
cout <<setprecision(2)<<fixed<<sqrt(s)<<endl;
}
return 0;
}
0.0分
0 人评分