Learn C++ Project: Design of Educational Fee Infrastructure

Introduction to the project

C++ Project: Design of Educational Fee Infrastructure. A C++ file program for fee infrastructure which informs the New-Comer Students about fee charges of the institute. It explains how charging of fee is being done.
Firstly, when a program executes and output screen appears, the New-Comer Students are welcomed very well. Then some options included menu is shown by program to student to choose one in between. When one student chooses his/her desired option, the fee will charge according to that particular option will shown on screen. And at the end of the program, student leaves the institute’s platform with best wishes.
Basic element that used in formation of that program is “if-else statement” which was controlled by variable integers “input” and “x”.

educational fee structure
educational fee structure

Design Educational Fee Infrastructure project in C++

C++ code for the project

#include<iostream.h>
#include<conio.h>
int main()
{
clrscr();
int input;
cout<<”Welcome To AA Educational Complex”<<endl;
cout<<”Thank You To Join Our Platform”<<endl;
cout<<”We Are Serving You With Our Best Following Services:”<<endl;
cout<<”1. Class 1 to Class 10”<<endl;
cout<<”2. F.Sc, F.A, I.Cs”<<endl;
cout<<”Computer Course”<<endl;
cout<<”ECAT/MDCAT”<<endl;
cout<<”CSS Preparation”<<endl;
cout<<”NTS Preparation “<<endl;
cout<<”If You Are Not Interesting In Our Services, You Can Leave Our Platform”<<endl;
cout<<”Kindly Choose From Above List, In Order To Get Our Services “<<endl;
cin>>input;
if(input==1)
{
cout<<”You Are Interesting To Study In Between Class 1 to Class 10, Kindly Choose From Given List”<<endl;
cout<<”1. Class 1 to Class 5”<<endl;
cout<<”2. Class 6 to Class 8”<<endl;

cout<<”3. Class 9 to Class 10”<<endl;
int x;
cin>>x;
if(x==1)
{
Cout<<”Your Monthly Fee Is Rs.500 Because You Want To Study In Between Class 1 to Class 5”<<endl;
}
Else if(x==2)
{
Cout<<”Your Monthly Fee Is Rs.800 Because You Want To Study In Between Class 6 to Calss 8”<<endl;
}
Else if(x==3)
{
Cout<<”Your Monthly Fee Is Rs.1000 Because You Want To Study In Between Class 9 to Class 10”<<endl;
}
}
If(input==2)
{
Cout<<”Your Monthly Fee Is Rs.1500 Because You Want To Study In F.Sc,F.A/I.Cs”<<endl;
}
Else if(input==3)
{
Cout<<”Your Monthly Fee Is Es.2000 Because You Want To study In Computer Course Class”<<endl;

}
Else if(input==4)
{
Cout<<”Your Monthly Fee Is Rs.3000 Because You Want To Prepare ECAT/MDCAT”<<endl;
}
Else if(input==5)
{
Cout<<”Your Monthly Fee Is Rs.5000 Because You Want To Prepare CSS”<<endl;
}
Else if(input==6)
{
Cout<<”Your Monthly Fee Is Rs.7000 Because You Want To Prepare NTS”<<endl;
}
Else if(input==7)
{
Cout<<”You Want To Leave Our Platform, Hopefully You Will Come Back”<<endl;
}
Else
{
Cout<<”Your Input Is Invalid, Try To Enter A Valid Input Given In List In New Attempt”<<endl;
Cout<<”Thanks A Lot To Trust Us”<<endl;
Cout<<”Good Luck”<<endl;

}

getch();

}

Also read here for more projects

https://eevibes.com/engineering-projects/

 

Leave a Reply

Your email address will not be published. Required fields are marked *