aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/ee1301/wk5/lab4/partner.cpp
blob: 538163d6d3115ea4a7a70a908660eafdb9f37195 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <iostream>

using namespace std;

string requestName();
double requestHeight(string fullName);
int requestNumberOfPartners();


int main()
{
	string fullName[2]; //fullName1, fullName2;
	double height[2];   //height1, height2;

	fullName[0] = requestName();
	height[0] = requestHeight(fullName[0]);
	fullName[1] = requestName();
	height[1] = requestHeight(fullName[1]);

	cout << "If " << fullName[0] << " and " << fullName[1]
	     << " form a human tower, their combined height will be "
	     << (height[0] + height[1]) << endl;
	
}

string requestName()
{
	string name;
	cout << "Please enter full name: ";
	getline(cin, name);
	return name;
}

double requestHeight(string fullName)
{
	double height;
	cout << "Please enter " << fullName << "'s height: ";
	cin >> height;
	cin.ignore(2, '\n'); // gets rid of \n in the buffer
	
	return height;
}

int requestNumberOfPartners()
{
	int numberOfPartners;
	cout << "How many partners are there?";
	cin >> numberOfPartners;
	
	return numberOfPartners;
}