-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathletter.cpp
More file actions
82 lines (71 loc) · 2.5 KB
/
Copy pathletter.cpp
File metadata and controls
82 lines (71 loc) · 2.5 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
//I split the functionality of deciding the message depending on the age into a different method
// This method checks the age and returns the appropriate message.
string age_message(int age)
{
std::stringstream message;
if(age < 12)
{
age = age + 1;
message << "Next year you will be age " << age;
}
else if (age == 17)
{
message << "Next year you will be able to vote ";
}
else if(age > 70)
{
message << "I hope you are enjoying your retirement";
}
return message.str();
}
void letter(string sender_name,string first_name,string friend_name,char friend_gender,string message)
{
//The actual letter
std::cout << "Dear " << first_name << "," << std::endl;
std::cout << "How are you? I am brilliant, who knew you could have so much fun on mars." << std::endl;
std::cout << "Have you seen " << friend_name << " lately?" << std::endl;
// Decide if male then use "him" else if female use "her"
if(friend_gender == 'm')
{
std::cout << "If you see " << friend_name << " please ask him to call me" << std::endl;
}
else if (friend_gender == 'f')
{
std::cout << "If you see " << friend_name << " please ask her to call me" << std::endl;
}
std::cout << message << std::endl;
std::cout << std::endl << std::endl;
std::cout << sender_name << std::endl;
}
int main()
{
std::string first_name = "";
std::string friend_name = "";
std::string sender_name = "";
char friend_gender = 0;
int age = 0;
std::cout << "Enter senders name" << std::endl;
std::cin >> sender_name;
// Take in the recipient name
std::cout << "Enter the name of the person you want to write to" << std::endl;
std::cin >> first_name;
// Take in the senders friend's name
std::cout << "Please enter your friends name" << std::endl;
std::cin >> friend_name;
//Take in the gender of the friend
std::cout << "Enter the gender of your friend. If your friend is male then type m , else if your friend is female type f"
<< friend_name << " lately?" << std::endl;
std::cin >> friend_gender;
//Take in the age of the recipient's age
std::cout << "Please enter the age of the recipient" << std::endl;
//std::cin >> age;
while(std::cin >> age && (age <= 0 || age >=110))
{
cout << "Age out of range , age must be greater than 0 and less than 110: "<< age << std::endl;
}
letter(sender_name,first_name,friend_name,friend_gender,age_message(age));
}