#include #include #include "point.h" using namespace std; int main() { const point A {3.0, 4.0}; const point B {4.0, 3.0}; cout << A << "\n"; cout << A.r() << "\n"; cout << boolalpha << (A == B) << noboolalpha << "\n"; return EXIT_SUCCESS; }