Instructions: 1 #include 2 using namespace std; 1. In the code editor, you are provided with the definition of 3 a struct Person. This struct needs an integer value for its 4 typedef struct { age. Furthermore, you are provided with a int age; displayPerson () function which accepts struct Person 6 } Person; as its parameter. 7 2. Your task is to first update the struct Person so that it can 8 void displayPerson(Person); have a gender as well. For this program, we shall 9 10 int main(void) { represent a gender with a single character: 'M' for male 11 and 'F' for female. 12 return 0; 3. Then, create a Person, take in an integer user input and a 13 } character user input, and then set them as the Person's 14 age and gender respectively. 15 void displayPerson(Person p) { 4. Finally, call the displayPerson () function and pass that cout <« "PERSON DETAILS:"« endl; cout <« "Age: " « p.age « endl; cout <« "Gender: "; if (p.gender == 'M') { cout <« "Male"; } else { cout <« "Female"; } 16 Person you created. 17 18 19 20 Input 22 1. The age of the Person 23 2. The gender of the Person 24 } Output Enter Person's age: 24 Enter Person's gender: M PERSON DETAILS: Age: 24 Gender: Male

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Code using c++

2. Solving a Person's Loneliness

by CodeChum Admin

It's been 1,245 years and our sole Person is getting lonelier each day. This Person definitely needs a partner!

 

Thus, we need to update our Person's design to have a gender as well and there shall be male and female!

 

 

Instructions:

  1. In the code editor, you are provided with the definition of a struct Person. This struct needs an integer value for its age. Furthermore, you are provided with a displayPerson() function which accepts a struct Person as its parameter.
  2. Your task is to first update the struct Person so that it can have a gender as well. For this program, we shall represent a gender with a single character: 'M' for male and 'F' for female.
  3. Then, create a Person, take in an integer user input and a character user input, and then set them as the Person's age and gender respectively.
  4. Finally, call the displayPerson() function and pass that Person you created.

Input

1. The age of the Person

2. The gender of the Person

Output

Enter·Person's·age:·24
Enter·Person's·gender:·M
PERSON·DETAILS:
Age:·24
Gender:·Male
main.cpp
Instructions:
1 #include <iostream>
1. In the code editor, you are provided with the definition of
2 using namespace std;
a struct Person. This struct needs an integer value for its
age. Furthermore, you are provided with a
4 typedef struct {
int age;
6 } Person;
displayPerson () function which accepts a struct Person
as its parameter.
2. Your task is to first update the struct Person so that it can
8 void displayPerson (Person);
have a gender as well. For this program, we shall
9
10 int main(void) {
represent a gender with a single character: 'M' for male
and 'F' for female,
11
12
return 0;
3. Then, create a Person, take in an integer user input and a
13 }
character user input, and then set them as the Person's
14
age and gender respectively.
15 void displayPerson(Person p) {
4. Finally, call the displayPerson () function and pass that
16
cout <« "PERSON DETAILS:" <« endl;
17
cout <« "Age: " <« p.age <« endl;
cout <« "Gender: ";
if(p.gender == 'M') {
cout <« "Male";
} else {
cout << "Female";
}
Person you created.
18
19
20
Input
21
22
1. The age of the Person
23
24
2. The gender of the Person
Output
Enter Person's age: 24
Enter Person's gender: M
PERSON DETAILS:
Age: 24
Gender: Male
Transcribed Image Text:main.cpp Instructions: 1 #include <iostream> 1. In the code editor, you are provided with the definition of 2 using namespace std; a struct Person. This struct needs an integer value for its age. Furthermore, you are provided with a 4 typedef struct { int age; 6 } Person; displayPerson () function which accepts a struct Person as its parameter. 2. Your task is to first update the struct Person so that it can 8 void displayPerson (Person); have a gender as well. For this program, we shall 9 10 int main(void) { represent a gender with a single character: 'M' for male and 'F' for female, 11 12 return 0; 3. Then, create a Person, take in an integer user input and a 13 } character user input, and then set them as the Person's 14 age and gender respectively. 15 void displayPerson(Person p) { 4. Finally, call the displayPerson () function and pass that 16 cout <« "PERSON DETAILS:" <« endl; 17 cout <« "Age: " <« p.age <« endl; cout <« "Gender: "; if(p.gender == 'M') { cout <« "Male"; } else { cout << "Female"; } Person you created. 18 19 20 Input 21 22 1. The age of the Person 23 24 2. The gender of the Person Output Enter Person's age: 24 Enter Person's gender: M PERSON DETAILS: Age: 24 Gender: Male
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY