100% found this document useful (1 vote)
950 views18 pages

Hostel Allocation System C++ Project

This document describes a hostel allocation system that aims to address problems with manually allocating hostels. It allows users to book rooms, view student records and allotted rooms, edit records, and delete records. The system is designed to simplify hostel management and make the allocation process easier by automating tasks like fee calculation and tracking available rooms. It aims to reduce issues like inaccurate data, human error, and lack of information around room availability that exist with a manual system.

Uploaded by

Suruchi Jha
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
950 views18 pages

Hostel Allocation System C++ Project

This document describes a hostel allocation system that aims to address problems with manually allocating hostels. It allows users to book rooms, view student records and allotted rooms, edit records, and delete records. The system is designed to simplify hostel management and make the allocation process easier by automating tasks like fee calculation and tracking available rooms. It aims to reduce issues like inaccurate data, human error, and lack of information around room availability that exist with a manual system.

Uploaded by

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

HOSTEL ALLOCATION SYSTEM

INTRODUCTION:
This Project work intends to address some of the problems encountered in the
allocation of hostels to students manually. The growing number of students in
higher institutions posed a lot of accommodation problems on the part of
students and School Management. Some of the problem caused includes: Few
hostels that exist in the University are not Properly managed, Statistic of rooms
required to match the growing number of students are farfetched, Student pays
fee for hostel and may end up not getting rooms because of lack of bed, Hostel
administrators cannot give accurate information of the occupancy of a particular
room. The system designed will keep track of all the available rooms, their
occupants and funds generated from hostel fees. The growing number of
students in higher institutions all over the world has posed a lot of
accommodation problem on the part of students and school management.
Students at the beginning of each session waste half of the semester looking for
accommodation.
BENEFITS:
 Hostel management simplified
 Rooms and bed allocation made easy
 Complete Mess management
 Disciplinary log maintenance
 Setting up fees as per the facilities in the hostel
 Hostel and mess fee integrated with fees management module for
automated fee calculation
 Provision for Hostel vacating / change management
 Final account details
 Daily updates to parents on hostel attendance

LIMITATIONS
Some of the constraints encountered during this project design include the
following:

 Time Consuming
 Inaccuracy of data
 More Human Error
 Low security
 Difficult to handle

SOURCE CODE
#include<iostream>

using namespace std;

#include<fstream>

#include<stdio.h>

class hostel

int room_no;

char name[30];

char address[50];

char phone[10];

public:

int main_menu();

int add();
int display();

int rooms();

int edit();

int check(int);

int modify(int);

int delete_rec(int);

};

int hostel::main_menu()

int choice=0;

while(choice!=5)

cout<<"\n\t\t\t\t*************";

cout<<"\n\t\t\t\t* MAIN MENU *";

cout<<"\n\t\t\t\t*************";

cout<<"\n\n\n\t\t\t1.Book A Room";

cout<<"\n\t\t\t2.student Record";

cout<<"\n\t\t\t3.Rooms Allotted";

cout<<"\n\t\t\t4.Edit Record";
cout<<"\n\t\t\t5.Exit";

cout<<"\n\n\t\t\tEnter Your Choice: ";

cin>>choice;

switch(choice)

case 1: add();

break;

case 2: display();

break;

case 3: rooms();

break;

case 4: edit();

break;

case 5: break;

default:

cout<<"\n\n\t\t\tWrong choice!!!";

cout<<"\n\t\t\tPress any key to continue!!";

return 0;

system("pause");
}

int hostel::add()

int r,flag;

ofstream fout("Record.txt",ios::app);

cout<<"\n Enter Customer Detalis";

cout<<"\n **********************";

cout<<"\n\n Room no: ";

cin>>r;

flag=check(r);

if(flag)

cout<<"\n Sorry..!!!Room is already booked";

else

room_no=r;

cout<<"\n Name:\t ";


cin>>name;

cout<<"\n Address:\t ";

cin>>address;

cout<<"\n Phone No:\t ";

cin>>phone;

cout<<endl;

fout.write((char*)this,sizeof(*this));

cout<<"\n Room is booked!!!";

cout<<"\n Press any key to continue!!";

system("pause");

fout.close();

return 0;

int hostel::display()

ifstream fin("Record.txt",ios::in);

int r;
cout<<"\n Enter room no: ";

cin>>r;

while(!fin.eof())

fin.read((char*)this,sizeof(*this));

if(room_no = r)

cout<<"\n Cusromer Details";

cout<<"\n ****************";

cout<<"\n\n Room no: "<<room_no;

cout<<"\n Name: "<<name;

cout<<"\n Address: "<<address;

cout<<"\n Phone no: "<<phone;

else{

cout<<"\n Sorry Room no. not found or vacant!!";


cout<<"\n\n Press any key to continue!!";}

system("pause");

fin.close();

return 0;

}}

int hostel::rooms()

ifstream fin("Record.txt",ios::in);

cout<<"\n\t\t\tList Of Rooms Allotted";

cout<<"\n\t\t\t*********************";

cout<<"\n\n Room No.\tName\t\tAddress\t\tPhone No.\n";

while(!fin.eof())

fin.read((char*)this,sizeof(*this));

cout<<"\n\n "<<room_no<<"\t\t"<<name;

cout<<"\t\t"<<address<<"\t\t"<<phone;
}

cout<<"\n\n\n\t\t\tPress any key to continue!!";

system("pause");

fin.close();

return 0;

int hostel::edit()

int choice,r;

cout<<"\n EDIT MENU";

cout<<"\n *********";

cout<<"\n\n 1.Modify Customer Record";

cout<<"\n 2.Delete Customer Record";

cout<<"\n Enter your choice: ";

cin>>choice;

cout<<"\n Enter room no: ";


cin>>r;

switch(choice)

case 1: modify(r);

break;

case 2: delete_rec(r);

break;

default: cout<<"\n Wrong Choice!!";

cout<<"\n Press any key to continue!!!";

return 0;

system("pause");

int hostel::check(int r)

int flag=0;

ifstream fin("Record.txt",ios::in);
while(!fin.eof())

fin.read((char*)this,sizeof(*this));

if(room_no==r)

flag=1;

break;

fin.close();

return(flag);

int hostel::modify(int r)

long pos , flag;

fstream file("Record.txt",ios::in|ios::out|ios::binary);

flag=0;

while(!file.eof())

pos=file.tellg();
file.read((char*)this,sizeof(*this));

if(room_no==r)

cout<<"\n Enter New Details";

cout<<"\n *****************";

cout<<"\n Name: ";

cin>>name;

cout<<" Address: ";

cin>>address;

cout<<" Phone no: ";

cin>>phone;

file.seekg(pos);

file.write((char*)this,sizeof(*this));

cout<<"\n Record is modified!!";

flag=1;

break;

}}

if(flag==0)
cout<<"\n Sorry Room no. not found or vacant!!";

file.close();

return 0;

int hostel::delete_rec(int r)

int flag=0;

char ch;

ifstream fin("Record.txt",ios::in);

ofstream fout("temp.txt",ios::out);

while(!fin.eof())

fin.read((char*)this,sizeof(*this));

if(room_no==r)

cout<<"\n Name: "<<name;

cout<<"\n Address: "<<address;

cout<<"\n Pone No: "<<phone;

cout<<"\n\n Do you want to delete this record(y/n): ";


cin>>ch;

if(ch=='n')

fout.write((char*)this,sizeof(*this));

flag=1;

else

fout.write((char*)this,sizeof(*this));

fin.close();

fout.close();

if(flag==0)

cout<<"\n Sorry room no. not found or vacant!!";

else

remove("Record.txt");

rename("temp.txt","Record.txt");

return 0;
}

int main()

hostel h;

cout<<"\n\t\t\t****************************";

cout<<"\n\t\t\t* HOSTEL MANAGEMENT PROJECT *";

cout<<"\n\t\t\t****************************";

cout<<"\n\n\n\n\n\t\t\t\tPress any key to continue!!";

system("pause");

h.main_menu();

system("pause");

OUTPUT
CONCLUSION
This project offers the user to enter the data in simple and interactive manner.
User is provided with the option of only viewing the records he has entered
earlier. Data storage and retrieval will become faster and easier to maintain.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy