CSC128 Project Final Report CS1112A PDF

Title CSC128 Project Final Report CS1112A
Author hummam adnan
Course Introduction to c++
Institution Universiti Teknologi MARA
Pages 26
File Size 719.3 KB
File Type PDF
Total Downloads 165
Total Views 574

Summary

CSC128 Fundamentals ofComputer Problem SolvingGROUP PROJECT FINAL REPORTTitle: Booking Ticket SystemGroup: CS1112AStudent ID: 2020845854Name: MOHAMAD HAJIM AQIL BIN MOHAMAD NAZRIStudent ID: 2020475932Name: MUHAMMAD HUMMAM BIN ADNANStudent ID: 2020494136Name: MOHAMAD AMIRUL AQIL BIN AZUAR AFFENDIDate...


Description

CSC128 Fundamentals of Computer Problem Solving GROUP PROJECT FINAL REPORT Title: Booking Ticket System Group: CS1112A

Student ID: Name:

2020845854 MOHAMAD HAJIM AQIL BIN MOHAMAD NAZRI

Student ID: Name:

2020475932 MUHAMMAD HUMMAM BIN ADNAN

Student ID: Name:

Date Submitted:

2020494136 MOHAMAD AMIRUL AQIL BIN AZUAR AFFENDI

0

6

0

8

2

0

2

1

INTRODUCTION

The title for this project is Booking Movies Ticket System. We choose this as our project because in this current era of globalization, most people like to watch movies to fill their free time.

With today's fast-paced life, people can become so busy and feel stressed, taking very little time to enjoy moments and make memories. Entertainment, time with friends and enjoying a simple way to relieve stress are just some of the reasons that watching movies is worth the time. Watching movies can present an awesome opportunity to relieve stress from our lives. It has been medically proven that stress is caused by a continuous build up of tension within a person and without a way to relieve it, then stress is inevitable. One of the best ways to relieve the buildup of tension is through watching movies.

The advantages of this system is the demands of a booking movies ticket system require a member of their staff is constantly available to handle bookings. They might not consider this is a problem with a customer service staff on hand, but consider the man hours which could be released by moving to a booking platform. Because this booking system is fully automated, if there’s space available for a given date, customers can choose their options, pick a date and time, pay and receive a confirmation, freeing up their staff to do more valuable things with their time. That’s a huge advantage of this booking platform, and one which can greatly benefit their business. This is why we choose to do a booking movie ticket system.

2

OBJECTIVE

Through this project, there are several things that we would like to achieve.

1. Provide a much easier system for the customers. By using this booking system for your movie tickets, you can choose from a wide variety of payment methods. When you visit the cinema yourself you either have to pay in cash or credit card. Also, you can use your net banking to pay for the tickets, which is just another easy way to get the tickets. You don’t have to worry about carrying enough cash in your wallet to pay for the tickets.

2. Able to satisfy the customers with the services provided. Since this system is much easier and can help to save their time, I hope that with this service the customer can fulfil their satisfaction. As everyone knows, fulfilling someone's satisfaction is not an easy thing. There are a lot of problems that the cinema can face while providing a customer's needs. With this system, it could make customers satisfied without a problem.

3. Come up with a flexible time system. As we know without this system, people might use the counter to make any purchases of movie tickets. Sometimes, it takes longer until they have made one. It is because of the queue and time limitations for each customer and the worker needs to make a deal. So, with this system customers can access the system at any time without any complication. Customers can also take their time using the system.

3

THE PSEUDOCODE

Begin 1. get_input 2. calculate_totalCharge 3. calculate_sum1 4. calculate_sum2 5. calculate_sum 6. calculate_total 7. Display_output End 1. get_input Read movie Read room Read seat 2. calculate_totalCharge totalCharge=(qty*24||qty*11) 3. calculate_sum1 sum1=sum1+price1 4. calculate_sum2 sum2=sum2+price2 5. calculate_sum sum=totalCharge+sum1+sum2 6. calculate_total total=sum-discount 7. Display_output Print total

4

THE FLOWCHART

5

6

7

8

9

10

THE CODING OF CINEMA BOOKING TICKET SYSTEM

#include using namespace std;

int main() { char seat, choice; int movie, room, qty, qty1, meal, beverage, paymentMethod; float totalCharge=0.00, paymentBalance=0.00, price1=0.00, price2=0.00, sum1=0.00, sum2=0.00; float sum=0.00, discount=0.00, total=0.00, value=0.00; string name, seatNo;

cout...


Similar Free PDFs