0% found this document useful (0 votes)
13 views4 pages

OOP Microproject Sample Report

Uploaded by

ayanokojik843
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views4 pages

OOP Microproject Sample Report

Uploaded by

ayanokojik843
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Object Oriented Programming (OOP 22316)

Micro Project of Report


Hotel Billing System

1.0. Rationale:-
This program is based on Hotel Billing System using C++programming language. It accepts
and display data on Hotel Bill.

2.0. Aims/Benefits of the Micro-project:-


The main aim of this microproject is to Develop a C++ program to accept and display records of
Hotel Billing Management System.

Benefits of this Microproject are as followed:


1) Through Inheritance, we can reduce length of the code and extend the use of existing classes.
2) Data is hidden and cannot be access by external functions.
3) New data and function can be easily added whenever required.

3.0. Course Outcomes Addressed:-


1) Develop C++ programs to solve problems using procedure Oriented Approach.
2) Develop C++ programs using classes and objects.
3) Implement Inheritance in C++ program.

4.0. Literature review:-


The project is based on developing a program for accepting and displaying the basic and essential
data’s related to Hotel Billing System.
We have collected following samples of Hotel Bills as a reference for our Micro-Project they are
as follows:
5.0. Actual Methodology:-
1) Planning the overview of the micro-project.
2) Finalizing the programming compiler & collecting required media.
3) Initaiting the micro project topic for making C++ Program .
4) Making initial structure of the program.
5) Combining and tuning all the initial structures and coding for Programming.
6) Work done by Team Members are as follows:
Sr. No. Work Done Team Members

1. Implementation Of the Program All Members

2. Making Report , Aditya Shelar

3. Class (Hotel_receipt_display – Derived Tanmay Kulkarni


Class)

4. Compiling & Testing the Program Ishan Raut

7) Got the desired Output.


8) Preparing for the report.
9) Report submission.
6.0. Outputs of Micro-project:-
➢ Program & Output
PROGRAM

#include<iostream.h>
#include<conio.h>
float no,price[50],total[50],qty[50],tt;
char item[30];
void main()
{
int i,j;
clrscr();
cout<<"\n\n\t\t\t ITA HOTEL BILLING Software\n\n";
cout<<"\nEnter The No. Of Food Items Ordered:";
cin>>no;
cout<<"\n\nSL No\tITEM NAME\tQUANTITY\tPRICE/ITEM\n\n";
for(i=1;i<=no;i++)
{
cout<<i;
cout<<"\t";
cin>>item;
cout<<"\t";
cin>>qty[i];
cout<<"\t";
cin>>price[i];
total[i]=price[i]*qty[i];
cout<<"\n\n";
}
for(i=1;i<=no;i++)
{
tt=tt+total[i];
}

cout<<"\n\n\t\t\tTOTAL:"<<tt<<" Rupees";
cout<<"\n\n\t\t\tTHANK YOU VISIT AGAIN.....";
getch();
}
7.0. Resources Required:-
Sr.no Name of the Specification Remarks
resources/material
1. Computer system. Intel(R) Core(TM) 1
i3-7100, 4GB RAM 64-bit
Operating System

2. DOS BOX. Version 0.7. 1

3. Turbo C++. Version 3.0. 1

8.0. Skills Developed:-


1) Developing learning skill, out of the syllabus.
2) We learnt to develop programs using C++ language.
3) Learnt to develop classes,objects and implementing the Inheritance
4) By this microproject, our concepts got more clear.
5) Team handling skill
9.0. Application of Micro-project:-
1) This microproject can be used for having a proper records of Hotel
Bills.
2) This can be used at different Hotel.
3) It will help to generate Hotel Bills very easily.

You might also like