Define a structure called Date with month, day and year as its only integer members. Define a structure called Person with name (string) and birthDate (Date) as its only members. Define a ValidDate() function to retrun true if a Date passed to it is a valid date and false if not. Define a LeapYear() function that returns true if a year passed to it is a leap year and false if not. Define a ShowList() function that takes an array of Persons and its size and displays all its members' names and birthdates. Define a sort() function that takes an array of Persons and size and sorts the array based on their names in ascending order. Write a main() program where you declare an array of Person structures of maximum size 50, read as many Persons from the user as the user wants to enter and then display the list. Then, sort the list and display again. The user will hit the Enter key without typing anything else for the name when done.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

In C++

Define a structure called Date with month, day and year as its only integer members. Define a structure called Person with name (string) and birthDate (Date) as its only members. Define a ValidDate() function to retrun true if a Date passed to it is a valid date and false if not. Define a LeapYear() function that returns true if a year passed to it is a leap year and false if not. Define a ShowList() function that takes an array of Persons and its size and displays all its members' names and birthdates. Define a sort() function that takes an array of Persons and size and sorts the array based on their names in ascending order. Write a main() program where you declare an array of Person structures of maximum size 50, read as many Persons from the user as the user wants to enter and then display the list. Then, sort the list and display again. The user will hit the Enter key without typing anything else for the name when done.

For example, if the input is the following: Robert White 7/11/1960 Julie Sanchez 9/16/1962 Janet Kramer 6/8/1956 Mary Betz 11/1/2001

The output should be: Janet Kramer 6/8/1956 Julie Sanchez 9/16/1962 Mary Betz 11/1/2001 Robert White 7/11/1960

#include <iostream>
#include <string>
using namespace std;
//Define Date structure here
//Define Person structure here
//Define specified functions
int main() {
   
   //enter your code here.
   //must read names and birthdates
   //show list before sorting
   //sort in ascending order
   //show list after sorting
   return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Datatypes
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education