#include <ios> #include <iostream> #include <algorithm> #include <cmath> #include <iomanip> using namespace std; const int MAX = 100; struct Point { int number; double x; double y; }; double pointlength(Point x,Point y){ return sqrt((x.x-y.x)*(x.x-y.x)+(x.y-y.y)*(x.y-y....