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

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

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

Post 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 expand its
operations by digitizing its records. The center currently has a
paper-based records system with data on each child register in its
care and the caregivers employed in the facility. Each caregiver 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:
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 C 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.
Users 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 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 (19.43 KiB) Viewed 41 times
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=;
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply