Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need help with these two programming problems given the starter code below. Language is C++, thanks! Part A Starter #include using namespace std; //
I need help with these two programming problems given the starter code below. Language is C++, thanks!
Part A Starter #include | ||||||||||||||||||||||||||||||||||||||||||||||||||
using namespace std; | ||||||||||||||||||||||||||||||||||||||||||||||||||
// We have setup class framework for you. | ||||||||||||||||||||||||||||||||||||||||||||||||||
// Please add cin/cout overload first and at the same time add the coordinates | ||||||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||||||
// See github example as specified in the assignment handout for exaamples | ||||||||||||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||||||||||||
class Point { | ||||||||||||||||||||||||||||||||||||||||||||||||||
public: | ||||||||||||||||||||||||||||||||||||||||||||||||||
friend istream& operator>>(istream &input, Point &p ) { | ||||||||||||||||||||||||||||||||||||||||||||||||||
// Finish me second by adding proper input >> statement | ||||||||||||||||||||||||||||||||||||||||||||||||||
return input; | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
friend ostream& operator | ||||||||||||||||||||||||||||||||||||||||||||||||||
// Finish me thrid by adding proper output | ||||||||||||||||||||||||||||||||||||||||||||||||||
return output; | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
// Please add constructors and other functions here. | ||||||||||||||||||||||||||||||||||||||||||||||||||
private: | ||||||||||||||||||||||||||||||||||||||||||||||||||
// Add me first | ||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||
int main() { | ||||||||||||||||||||||||||||||||||||||||||||||||||
Point P1; | ||||||||||||||||||||||||||||||||||||||||||||||||||
cout | ||||||||||||||||||||||||||||||||||||||||||||||||||
cin >> P1; | ||||||||||||||||||||||||||||||||||||||||||||||||||
cout | ||||||||||||||||||||||||||||||||||||||||||||||||||
cout | ||||||||||||||||||||||||||||||||||||||||||||||||||
cout | ||||||||||||||||||||||||||||||||||||||||||||||||||
return 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||
}
Part B starter
|
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