#include <iomanip> #include <iostream> #include <cmath> using namespace std; int main() { int n;cin>>n; while(n--){ double a,b,c,d; cin>>a>>b>>c>>d; cout<<fixed<<setprecision(2)<<sqrt(pow(c-a,2)+pow(d-b,2))<<endl; } } // 64 位输出请用 printf("%lld")