aboutsummaryrefslogtreecommitdiffstats
path: root/w4.cpp
blob: bef51a85e32a31c21abf23f6cc919eef97ee9b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <iostream>
#include <vector>
#include <sstream>

using namespace std;

struct point {
	double x;
	double y;

	string returnString() {
		stringstream ss;
		ss << "(" << x << ", " << y << ")";
		return ss.str();
	}
};

int main() {
	point userPt;

	cout << "Please enter a point: ";
	cin >> userPt.x >> userPt.y;
	cout << "Your point was: " << userPt.returnString() << endl;
}