Question: C++ Problem: Write a template function distance (p1, p2) that computes the distance between the two 2-dimensional points p1 and p2: distance (p1, p2) =
C++
Problem: Write a template function distance (p1, p2) that computes the distance between the two 2-dimensional points p1 and p2: distance (p1, p2) = (pl. x - p2.x)2 + (pl. y - p2. y)2 Here (x,y) coordinates can be of any type T. = Write a template class Point that defines the (x,y) coordinates of the 2-D point. Declare distance as a friend function of this class. Also provide a constructor to initialize (x,y) and a print() function for the point class. Write a main() code that creates two Point objects with coordinates (2.1,3.4) and (5.5,6.0), computes and prints the distance between these two points
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
