Page 1 of 1

Problem Kids Plus is a small child care facility catering to children from 0 to 12 years. Kids Plus wants to improve and

Posted: Sat May 14, 2022 7:02 pm
by answerhappygod
Problem Kids Plus Is A Small Child Care Facility Catering To Children From 0 To 12 Years Kids Plus Wants To Improve And 1
Problem Kids Plus Is A Small Child Care Facility Catering To Children From 0 To 12 Years Kids Plus Wants To Improve And 1 (38.41 KiB) Viewed 38 times
User Should be able to:
The user should also be allowed to assign caregivers and
children to a section ensuring that the maximum threshold is not
exceeded.
This is where I am at so far:
Problem Kids Plus Is A Small Child Care Facility Catering To Children From 0 To 12 Years Kids Plus Wants To Improve And 2
Problem Kids Plus Is A Small Child Care Facility Catering To Children From 0 To 12 Years Kids Plus Wants To Improve And 2 (19.43 KiB) Viewed 38 times
Problem Kids Plus is a small child care facility catering to children from 0 to 12 years. Kids Plus wants to improve and expand its operations by digitizing its records. The centre currently has a paper-based records system with data on each child register in its care and the caregivers employed in the facility. Each care giver is trained to give special care to children in a particular age group (Newborn, Infant, toddler, preschool and primary). The record detail for each category are as follows: • Child - Child ID, First Name, Last Name, Date of Birth, Gender, Address, parent/guardian ID, Section Assignment • Parent/Guardian - Guardian ID, First Name, Last Name, Address, Relationship, Telephone No. email address • Caregiver's records - Caregiver ID, First Name, Last Name, Gender, Address, Age Range, Section Assignment The centre is subdivided into groups called sections. Each section is identified by a letter and is assigned 2 employees and a maximum of 9 children. Task Write a program using the language that would implement a digital system for the centre. Your program should create files that will store the information on each category. The user of your program should be given the option to perform the following actions to the respective file.

WOUL W #include<iostream> #include<conio.h> #include<string.h> #include<stdlib.h> #include<stdio.h> 10 11 12 13 14 15 16 - 17 18 19 20 - 21 22 23 24 25 26 27 28 29 30 31 HHHHHHNNNNNNNN struct child int child_id, parent_id; char Frame [20], Lname[20], Gen[20], address [20]; float dob; }; struct parent{ int guardian_id, Telenom; char fname[20], lname [20], address [20], relationship[20], eaddress [20]; }; struct records{ int caregiver_id, arange; char fname[20], Iname[20], gender [20], address [20], sassignment [20]; }; using namespace std; class child; class parent; class records ; class facility{ public: int counter=;