Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Two doubles are read as the x and the y of a Coordinates object. Assign pointer myCoordinates with a new Coordinates object using the x
Two doubles are read as the x and the y of a Coordinates object. Assign pointer myCoordinates with a new Coordinates object using the x and the y as arguments in that order.
Ex: If the input is then the output is:
Coordinates's x:
Coordinates's y:
#include
#include
using namespace std;
class Coordinates
public:
Coordinatesdouble xValue, double yValue;
void Print;
private:
double x;
double y;
;
Coordinates::Coordinatesdouble xValue, double yValue
x xValue;
y yValue;
void Coordinates::Print
cout "Coordinates's x: fixed setprecision x endl;
cout "Coordinates's y: fixed setprecision y endl;
int main
Coordinates myCoordinates nullptr;
double xValue;
double yValue;
cin xValue;
cin yValue;
myCoordinatesPrint;
return ;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started