![]() |
| ||
| automated ticket system! HELP!!! i have to do this, and my lecturer is such an ass asking us to learn it by ourselves. i have tried a code but it not working the way it is suppose to be. (Airline Reservation System) A small airline has just purchased a computer for its new automated reservations system. You are asked to program the new system. You are to write a program to assign seats on each flight of the airline’s only plane (capacity:100 seats). Your program should display the following menu of alternatives: Please type 1 for “business class” Please type 2 for “first class” Please type 3 for “economy class” If the person types 1, then your program should assign a seat in the business class (seats 1-20). If the person types 2, then your program should assign a seat in the first class (seats 21-50). If the person types 3, then your program should assign a seat in the economy class (seats 51-100). Your program should print a boarding pass indicating the person’s seat number and whether it is in the business or first class or economy section of the plane. Use a single-subscripted array to represent the seating chart of the plane. Initialize all the elements of the array to 0 to indicate that the seats are empty. As each seat is assigned, set the corresponding elements of the array to 1 to indicate that the seat is no longer available. Your program should, of course, never assign a seat that has been already assigned. When the first class/business class section is full, your program should ask the person if it is acceptable to be placed in the economy section (and vice versa). If yes, then make the appropriate seat assignment. If no, then print a message indicating the schedule of the next flight. Your program must be very interactive and try to include as many options as possible. Try also to include your own ideas in the program which can improve the quality of its output. #include<iostream> |
| ||
| Re: automated ticket system! HELP!!! Where is your seats[100] array? What if a passenger whishes a special seat? |
| ||
| Re: automated ticket system! HELP!!! Quote:
|
| ||
| Re: automated ticket system! HELP!!! Okay, examine the first loop statement: while(n >= n) is an obvious first problem...a variable is *always* going to be equal to itself under any competent compiler. Thanx... Sean |
| All times are GMT -4. The time now is 1:39 pm. |
Forum system based on vBulletin Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
©2003 - 2010 DaniWeb® LLC