Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 10 Drill 2
Using std_lib_facilities.h by Bjarne Stroustrup.
[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PPP
// Chapter 10 Drill 2
#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;
}
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;
}
}
}
int main()
try
{
fill_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,3 Enter point pairs in format x,y. To end your input type x 6,7 Enter point pairs in format x,y. To end your input type x 3,2 Enter point pairs in format x,y. To end your input type x x Please enter a character to exit