Hiii Buddies....I am having a very frustrating time trying to understand where to start from and where to end in creating online enrollment billing system....there is tonnes of stuffs that i have no clue wat to do.....since m a beginner
it is possible to help me out with the coding below..........
iam soooooo blank.......in this c++
-------------------------------------------------------....-----------------------------------------------------------------------------------------------------------------------
Your friend, Laxus, is an owner of a software firm. His firm has recently been tasked with creating an
Online Enrollment Billing System for Coconut University. This system will assist students in calculating
the fees for units enrolled in and checking whether units they want, require a prerequisite.
Since you are doing a programming unit, he has come to you with a job offer to create a prototype
program for the university.
There are two Programmes available for Students to enroll in:
· Bachelor of Commerce in Information System (BCom)
· Bachelor of Information Technology (BIT)
Under the BCom and BIS programme the offered units as well as their perquisite are as follows:
BIT units codes Cost Prerequisite BCom unit codes Cost Prerequisites
MTH511 $200 NONE CIN531 $200 NONE
CIN531 $200 NONE CIN535 $200 CIN535
CIN535 $200 CIN531 CIN501 $200 NONE
CIN621 $530 CIN531 CIN621 $530 CIN531
CIN624 $530 CIN531 CIN623 $530 CIN621
CIN628 $530 CIN624 CIN708 $650 CIN501
CIN713 $650 NONE CIN711 $650 CIN501
Students are only allowed to enroll to a maximum of 3 units for the year and can only enroll in units in
their programme. Furthermore Students are only allowed to do units if they have done the prerequisite of
that unit.
Each student is given a unique Student ID which goes up to a maximum of 8 numerical digits. For
example: “1”, “98754684”, etc.
Requirements
Create a program which will allow students to supply the Student ID and select the programme code
offered, and based on the programme, choose the units code.
Programme codes are as follows:
· C or c for BCom programme
· I or i for BIT programme
Unit codes are listed in the table above.
The program should then display the student ID, the programme enrolled in, units chosen, and the total
cost of the three units.
Use functions to achieve the following tasks:
1. Read Student details that is ID, programme and units enrolled in
2. Calculate the total cost of the units enrolled in
3. Display Student details and total cost of units
Ensure your program is able to do validation and asks the user to input another data in case of an incorrect
entry. Your program should also ask the user, when entering unit codes, whether they have done the
prerequisites. If not then choose another unit or allow the user to enroll in another unit.
Your program should also have the ability to ask if the user wants to put another student’s details after
one student is done.