返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. #include<string>
  5. using namespace std;
  6. int main()
  7. {
  8.     int x1,y1,x2,y2;
  9.     cin>>x1>>y1>>x2>>y2;
  10.     printf("%.2f",sqrt(pow(x1-x2,2)+pow(y1-y2,2)));
  11.     return 0;
  12. }
複製代碼

TOP

返回列表