Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 10 Drill 3
Using std_lib_facilities.h by Bjarne Stroustrup.
[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 10 Drill 3
#include "std_lib_facilities.h"
class Point {
public:
Point(double _x, double _y);
void set_pt(double _x, double _y);
double get_pt_x() { return x; }
double get_pt_y() { return y; }
private:
double x;
double y;
};
Point::Point(double _x, double _y) {
x = _x;
y = _y;
}
void Point::set_pt(double _x, double _y) {
x = _x;
y = _y;
}
ostream& operator<<(ostream& os, Point& _pt) {
os << "(" << _pt.get_pt_x() << " ," << _pt.get_pt_y() << ")" << endl;
return os;
}
vector<Point> original_pts;
void fill_original_pts() {
while (true) {
cout << "Enter point pairs in format x,y.\n"
"To end your input type x" << endl;
double x, y;
char comma;
char check;
cin >> check;
if (check == ‘x’) {
break;
}
else {
cin.putback(check);
}
if (cin >> x >> comma >> y) {
if (comma != ‘,’) {
cout << "X and y seperated by comma, not: " << comma << endl;
}
else {
Point pt(x, y);
original_pts.push_back(pt);
}
}
else {
cin.clear();
string check1;
cin >> check1;
cout << "Invalid value input: " << check1 << endl;
}
}
}
void print_original_pts(vector<Point> _pts) {
for (int i = 0; i < _pts.size(); i++) {
cout << _pts[i];
}
}
int main()
try
{
fill_original_pts();
print_original_pts(original_pts);
keep_window_open();
}
catch (runtime_error e) {
cout << e.what() << endl;
keep_window_open();
}
catch (…) {
cout << "Exiting" << endl;
keep_window_open();
}
[/code]
Output: Enter point pairs in format x,y. To end your input type x 3,4 Enter point pairs in format x,y. To end your input type x 2,4 Enter point pairs in format x,y. To end your input type x 6,1 Enter point pairs in format x,y. To end your input type x x (3 ,4) (2 ,4) (6 ,1) Please enter a character to exit