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
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...
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:
- 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.
- 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.
- 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.
- 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
Expert Solution
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images
Recommended textbooks for you
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 Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
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 Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
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
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY