SPONGEBOB CINEMAS INSIDIOUS KHURAFAT THE LAST SUMMER.

Slides:



Advertisements
Similar presentations
An Introduction to Programming By :- Vishal Hirani B.Tech II year (CSE)
Advertisements

Programming with Microsoft Visual Basic th Edition
1 Algorithms Algorithm A set of unambiguous instructions for solving a problem or subproblem in a finite amount of time using a finite amount of data Why.
Programming Logic and Design Eighth Edition
By Andrew Egger. Size #1: 3.79 Liters $9.42 Size #1: Unit Price $9.42/3.79L = $2.49 per liter.
GOALS BUSINESS MATH© Thomson/South-WesternLesson 12.1Slide Cash Sales and Sales on Account Complete a cash proof form Calculate sales invoice and.
© Janice Regan, CMPT 102, Sept CMPT 102 Introduction to Scientific Computer Programming The software development method algorithms.
Shortage, Surplus & Equilibrium
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 3 - Structured Program Development Outline.
Chapter 8: Introduction to High-level Language Programming Invitation to Computer Science, C++ Version, Third Edition.
Programming Introduction November 9 Unit 7. What is Programming? Besides being a huge industry? Programming is the process used to write computer programs.
Modules, Hierarchy Charts, and Documentation
My research project By Mary. My research project I am honored to be a "Young Assistant Researcher ’ " in RISE, the topic of my research is “ what do people.
PRE-PROGRAMMING PHASE
Chapter 1 Introduction to Programming. Computer Hardware CPU Memory –Main or primary –Secondary or auxiliary Input device(s) Output device(s)
DCT 1123 PROBLEM SOLVING & ALGORITHMS INTRODUCTION TO PROGRAMMING.
Chapter 2 Build Your First Project A Step-by-Step Approach 2 Exploring Microsoft Visual Basic 6.0 Copyright © 1999 Prentice-Hall, Inc. By Carlotta Eaton.
Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Six Repeating Program Instructions.
© The McGraw-Hill Companies, 2006 Chapter 4 Implementing methods.
Microsoft Visual Basic 2010: Reloaded Fourth Edition Chapter Seven More on the Repetition Structure.
Structured Program Development Outline 2.1Introduction 2.2Algorithms 2.3Pseudo code 2.4Control Structures 2.5The If Selection Structure 2.6The If/Else.
MARKETING. Standards… BCS-BE-36: The student demonstrates understanding of the concept of marketing and its importance to business ownership. BCS-BE-36:
Tutorial 1 Introduction to Economics 1. LEARNING OUTCOMES The term “economy” 2. Difference between microeconomics and macroeconomics; 3.The three basic.
Chapter 5 Algorithms Introduction to computer, 2nd semester, 2010/2011 Mr.Nael Aburas Faculty of Information Technology.
Chapter 6: The Repetition Structure
Microsoft Visual Basic 2008: Reloaded Third Edition Chapter Six The Do Loop and List Boxes.
Lecture 4: Calculating by Iterating. The while Repetition Statement Repetition structure Programmer specifies an action to be repeated while some condition.
An Object-Oriented Approach to Programming Logic and Design Fourth Edition Chapter 4 Looping.
Chapter 6: Prices Section 3
The basics of the programming process The development of programming languages to improve software development Programming languages that the average user.
1 Programming Environment and Tools VS.Net 2012 First project MSDN Library.
ALGORITHMS AND FLOWCHARTS. Why Algorithm is needed? 2 Computer Program ? Set of instructions to perform some specific task Is Program itself a Software.
Design Document Sample Given two concentrated circles with different radii, calculate the area which falls inside the big circle but outside the small.
What are the key components of the leisure industry?
CSE 110: Programming Language I Matin Saad Abdullah UB 404.
© Copyright 1992–2004 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Chapter 3 - Structured Program Development Outline.
Objective 5.01H.  The amount of money that is paid for a good, service, or resource  In the U.S., it’s expressed in dollars and cents.  Indicates the.
Objectives: 1.Be able to write equations of application problems. 2.Be able to solve applications using substitution or elimination. Critical Vocabulary:
1 COMS 261 Computer Science I Title: C++ Fundamentals Date: September 23, 2005 Lecture Number: 11.
Small Businesses in Louisiana Unit 7. Supply The amount of goods offered for sale by a business The amount of goods offered for sale by a business.
Program design Program Design Process has 2 phases:
Introduction to Programming
while Repetition Structure
Algorithm & Programming
ALGORITHMS AND FLOWCHARTS
CHAPTER 5A Loop Structure
Pseudocode Upsorn Praphamontripong CS 1110 Introduction to Programming
Understand the Programming Process
An Introduction to Visual Basic .NET and Program Design
CMIS 102 Competitive Success-- snaptutorial.com
CMIS 102 Education for Service-- snaptutorial.com
CMIS 102 Education for Service/tutorialrank.com
CMIS 102 Teaching Effectively-- snaptutorial.com
Problem Solving Techniques
VISUAL BASIC – CHAPTER ONE NOTES An Introduction to Visual Basic
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Understand the Programming Process
The Consumer The Informed Consumer.
CS 1111 Introduction to Programming Spring 2019
Chapter 8: The Good Consumer
Data and Flowcharts Session
A LESSON IN LOOPING What is a loop?
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Data and Flowcharts Session
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Algorithms, Part 2 of 3 Topics Problem Solving Examples Pseudocode
Title Introduction: Discussion & Conclusion: Methods & Results:
WJEC GCSE Computer Science
Problem Solving With Simultaneous Equations
Presentation transcript:

SPONGEBOB CINEMAS INSIDIOUS KHURAFAT THE LAST SUMMER

INTRODUCTION For this project, we have decided to produce a movie-ticket receipt for a cinema, that we named Spongebob Cinemas. By producing those tickets, we will manage to come out with the statistics of the collections of Spongebob Cinemas per day, this is including the total of tickets bought for each movies and the total of tickets bought for each type of tickets. In this case, the only genre of the movies that we have taken is horror. The titles of movies that we have offered are Malay horror movie; Khurafat, English horror movie; Insidious, and Thailand horror movie; The Last Summer. These tickets also divided into three types; Adult, Children and Senior. We have taken a sample of 10 families to run our project, and each family has a different total of ticket bought based on their choices. In the tickets, we print out the price of the tickets they have chosen and also the total amount they have to pay. We hope our customers are satisfied with our services and enjoy the movies.

OBJECTIVES To find out the most watched movie for the three same genred movies which are Khurafat, Insidious and The Last Summer To come out with the statistics of the collections by the cinema per day To identify which movie is the best seller. We have use nested-if for the user to choose the code of the type of the movie which are, E; for English movie Insidious, M; for Malay movie Khurafat and also T; for Thailand movie The Last Summer. Besides, the user has to key in the type of the ticket of the movie which are, A; for Adult, C; for Children, and S; for Senior. For looping, we used counter-controlled loop to repeat the body loop for 10 families. Next, the sentinel-conrolled is used to repeat the body loop for as many times as that one particular family wanted. For function, function without parameter and without return value is used for the function greeting(). Other than that, functions with parameter and with return value is used for calcInsidious() and calcAmount().

PROBLEM DEFINITION Input :name of customer, type of ticket, total quantity of ticket and choice Output :price of ticket, total price of ticket, total quantity, total amount and total ticket Processing :total price of ticket = price x quantity total ticket =  quantity (all movie & type) total amount =  total price of ticket

CONCLUSION Throughout this project, we managed to find out which movie is the best seller and which type of ticket is sold the most. Based on the samples we have taken, it is shown that Insidious is the best seller movie among the three movies. It is also found that Adult type of ticket has been sold the most compared to the others. We also have printed out our own logo on each ticket. On the other hand, by completing this project we were able to design a program to solve the problem using flowchart or pseudo-code. We were also able to code the program using Microsoft Visual C++ editor. Other than that, we got to learn how to compile and execute the program. Lastly, we succeed to submit the report contains of flowchart and pseudo-code, source- code and samples of input and output.