1. 程式人生 > >2001 計算兩點間的距離

2001 計算兩點間的距離

mes main sqrt esp nbsp class () pac include

#include<iostream>
#include<cstdio>
using namespace std;

int main() {
    double a, b, x, y;
    while (cin >> a && cin >> b && cin >> x && cin >> y) {
        double ans = sqrt((x - a)*(x - a) + (y - b)*(y - b));
        printf(
"%.2f\n", ans); } return 0; }

2001 計算兩點間的距離