Вы находитесь на странице: 1из 14

TERM PAPER OF DATA STRUCTURE ON THE TOPIC OF TOURISM MANAGEMENT SYSTEM

SUBMITTED BY:-ANUJ KAPARWAN SUBMITTED TO: - MISS MANSI RANA REG_NO:-11203633

ROLL_NO:-RD1206B33
COURSE CODE: - CAP511

TOURISM MANAGEMENT SYSTEM

ABSTRACT

This is Data structure projects on Tourism Management System, which provided a lot of facility to their user. The objective and scope of my Tourism Management System is to record the details various activities of user. TOURISM MANAGEMENT is a desktop application, which will helps in automation

of day-to-day activities of TOURISM, which is user friendly and easy to understand


staff as to check the detail of a particular traveller. TOURISM MANAGEMENT will maintain records of all travellers. Maintain record of billing, services, enquiry, specifications, and information; create new users, change seats, searching, feedback, complaint and suggestion. The system will provide a user friendly interface and work in synchronized way with windows OS. This system will overcome the disadvantages of manual processing.

TOURISM MANAGEMENT SYSTEM

INTRODUCTION
Tourism is an exciting and dynamic sector that is constantly changing. It can
affect peoples lives in many different ways: for tourists it can be a source of lifelong memories, joy and fulfillment, and for businesses and destinations it is a Source of income and employment. As tourism has grown and become an ever more prominent activity, tourism studies as an academic field has also developed. In tourism management system you firstly know about what is tourism under the tourism we taking the example of India and see that the role of tourism in India so, Tourism in India is a large industry. The World Travel and Tourism Council calculated that tourism generated $121 billion or 6.4% of the nation's GDP in 2011. It was responsible for 39, 3 million jobs, 7.9% of its total employment. The GDP of the tourism sector has expanded 229% between 1990 and 2011. The sector is predicted to grow at an average annual rate of 7, 7% in the next decade. This gave India the fifth rank among countries with the fastest growing tourism industry. India has a large medical tourism sector which is expected to grow at an estimated rate of 30% annually to reach about 9,500 crore by 2015. In the year 2011, there were nearly 6.29 million foreign tourist arrivals in India, up by over 8% from the year 2010 when 5.78 million foreign tourists arrived in India. Domestic tourist visits to all states and Union Territories numbered 747.70 million. The majority of foreign tourists come from the United States (16%) and the United Kingdom (12, 6%). In 2011 Maharashtra, Tamil Nadu and Delhi were the most popular states for foreign tourists. Domestic tourists visited the states Uttar Pradesh, Andhra Pradesh and Tamil Nadu most frequently. Chennai, Delhi, Mumbai and Agra have been the four most visited cities of India by foreign tourists during the year 2011. Worldwide, Chennai is ranked 41 by the number of foreign tourists, while Delhi is ranked at 50, Mumbai at 57 and Agra at 65. In the TOURISM MANAGEMENT SYSTEM we manage the tourism management in simply such as creating software. The software of tourism having the information about places where tourist want to travel and about the via through and price description and so on.

TOURISM MANAGEMENT SYSTEM

SCOPE OF TOURISM:The scope of the Tourism Management System is when we doing any entry of the tourist or customer we lost the information but in the computer software we creating the data base for storing the data about the customers so its scope is wide under it we can concluded the most of thing such as we easily entered the data and getting the tickets of customers. Tourism is important, and in some cases, vital for many countries. It was recognized in the Manila Declaration on World Tourism of 1980 as "an activity essential to the life of nations because of its direct effects on the social, cultural, educational, and economic sectors of national societies and on their international relations. Tourism brings in large amounts of income in payment for goods and services available, accounting for 30% of the world's exports of services, and 6% of overall exports of goods and services. It also creates opportunities for employment in the service sector of the economy, associated with tourism. These service industries include transportation services, such as airlines, cruise ships, and taxicabs; hospitality services, such as accommodations, including hotels and resorts; and entertainment venues, such as amusement parks, casinos, shopping malls, music venues, and theatres. And many more things are of used in tourism.

TOURISM MANAGEMENT SYSTEM

CODING
#include<stdio.h> #include<conio.h> #include<string.h> struct hotel

{
char visitor_name[20]; int ph_no; char address[50]; int seat_no; }s; void view(); void reserve(); void booked_seats(); void cancel(); void form(); void menu() { int ch; clrscr(); printf("\t TOURISM MANAGEMENT SYSTEM");

TOURISM MANAGEMENT SYSTEM

printf("\n\n1.VIEW ALL PLACES"); printf("\n\n2.RESERVE A VEHICLE"); printf("\n\n3.ALREADY RESERVED SEATS" ); printf("\n\n4.CANCEL A TOUR "); printf("\n\n5.FILL FORM FOR TOUR"); printf("\n\n6.EXIT "); printf("\nEnter your choice(1,2,3,4,5,6):\t"); scanf("%d",&ch); switch(ch) { case 1: view();

getch();
menu(); break; case 2: reserve(); getch(); menu(); break; case 3: booked_seats(); getch(); menu(); break;

TOURISM MANAGEMENT SYSTEM

case 4: cancel(); getch(); menu(); break; case 5: form(); getch(); menu(); break; return; default:printf("\n enter a valid choice"); }}

void view()
{ clrscr(); printf("places vehicle "); printf("\nsingapur by aeroplan "); printf("\nAmerica by aeroplan "); printf("\nkashmir by bus "); printf("\nshrinagar by bus"); printf("\nnagaland by aeroplan"); printf("\njammu by bus"); printf("\nbanglor by bus");

TOURISM MANAGEMENT SYSTEM

printf("\nhimachal by bus"); printf("\nuttrakhand by bus"); getch();

void form() { printf("\nEnter the visitor_name: "); scanf("%s",&s.visitor_name); printf("\nEnter the phone number:");

scanf("%d",&s.ph_no);
printf("\n Enter the address"); scanf("%s",&s.address); getch(); } void booked_seats() { int seat_no,reserved=0; clrscr(); if(seat_no==reserved) {

TOURISM MANAGEMENT SYSTEM

printf("\t seat is already booked: "); } else if(seat_no!=reserved) { printf("\t choose another seat: " ); } getch(); } void reserve() { int seat_no,total_seats=8,reserved=0,seat;

clrscr();
if(reserved<=total_seats) { reserved++; printf("Enter the seat number: "); scanf("%d",&seat_no); if(seat_no<=50) { clrscr(); printf("\n 1.a/c seat(fare Rs10000 )"); printf("\n 2.non/ac seat(fare Rs8000)");

TOURISM MANAGEMENT SYSTEM

printf("\n 3.General seat(fare Rs5000)"); printf("\n which seat you want to book: "); scanf("%d",&seat); if(seat==1) { clrscr();

printf("\n Your fare is Rs.10000: "); form(); menu(); }

else if(seat==2)
{ clrscr(); printf("\n Your fare is Rs.8000: "); form(); menu(); } else if(seat==3) { clrscr(); printf("\n Your fare is Rs.5000");

TOURISM MANAGEMENT SYSTEM

form(); menu(); } else { printf("Enter valid choice(1,2 or 3)"); form(); menu(); } getch(); }

else
printf("WARNING!YOU HAVE ENTERED THE WRONG SEAT_NO");

} } void cancel() { int seat,seat_no; char ch; clrscr(); printf("\n enter the seat number ");

TOURISM MANAGEMENT SYSTEM

scanf("%d",&seat_no); if(seat==s.seat_no) { printf("\n your seat is cancelled "); getch(); } else { printf("\n seat_no is invalid "); getch(); menu();

}}
void main() { clrscr(); printf("\n WELCOME TO THE TOURISM MANAGEMENT SYSTEM: "); getch(); menu (); }

TOURISM MANAGEMENT SYSTEM

OUTPUT:-

TOURISM MANAGEMENT SYSTEM

CONCLUSION:The TOURISM MANAGEMENT SYSTEM project has been automated, tested and implemented successfully. So this project has reduced these problems. It calculates all the transaction. The user will enter the data base and then with the help of procedure. At the least this project is too simple and easy to use. This project is also giving a great role to give the complete information about patients.

Вам также может понравиться