返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     cin.sync_with_stdio(0);
  6.     int x_1,y_1,x_2,y_2;
  7.     cin>>x_1>>y_1>>x_2>>y_2;
  8.     printf("%.2f",sqrt(pow((x_2-x_1),2)+pow((y_2-y_1),2)));
  9. return 0;
  10. }
複製代碼

TOP

返回列表