#include "point.h" #include #include "line.h" void main() { char any; CPoint p_first, p_second; p_first.x=35; p_first.y=12; p_second.setxy(10,15); cout << "First Point" << endl; p_first.show(); cout << "Second Point" << endl; p_second.show(); // //============================= //Line treatment CLine line1; float len; line1.P1=p_first; line1.P2=p_second; len=line1.length(); cin >> any; }