Introduction to Video Game Programming (VGP) Mr. Shultz.

Slides:



Advertisements
Similar presentations
Measuring Capacity, Weight, and Temperature Section 7.2.
Advertisements

1 ICS102: Introduction To Computing King Fahd University of Petroleum & Minerals College of Computer Science & Engineering Information & Computer Science.
Creating Flowcharts Principles Of Engineering
Software Engineering Introduction to Flowcharts Ku-Yaw Chang Assistant Professor Department of Computer Science and Information.
Introduction to Flowcharting
Mathematics for Computing Lecture 4: Algorithms and flowcharts Dr Andrew Purkiss-Trew Cancer Research UK
INTRODUCTION TO PROGRAMMING
Flow Chart.
1 Lecture-2 CSIT-120 Spring 2001 Revision of Lecture-1 Introducing Computer Architecture The FOUR Main Elements Fetch-Execute Cycle A Look Under the Hood.
Chapter 2- Visual Basic Schneider
Flowchart Diagram Risanuri Hidayat. What A Flow Chart is a sequential diagram that shows the steps involved in an operation or task and the decisions.
Programming Tools Flowcharts Pseudocode Algorithm Chapter 2.
Unit 171 Algorithms and Problem Solving  Introduction  Algorithm Design  Algorithm Properties  Algorithm Control Flow  Examples  Comparing Algorithms.
1 Lecture-2 CS-120 Fall 2000 Revision of Lecture-1 Introducing Computer Architecture The FOUR Main Elements Fetch-Execute Cycle A Look Under the Hood.
Chapter 3 Planning Your Solution
Chapter 1 Pseudocode & Flowcharts
Introduction to Video Game Programming (VGP) Mr. Shultz.
Computer Programming 12 Lesson 2 - Organizing the Problem By Dan Lunney.
Information Technology Fundamentals (ITF) Mr. Shultz.
Introduction to Programming Lecture Number:. What is Programming Programming is to instruct the computer on what it has to do in a language that the computer.
Today’s Objective(s) and Bell-Ringer Bell-Ringer Assignment 1.No Bell-Ringer today 2.Complete Alice Introduction Guided Notes Objective Using Alice, TSW.
CSC141 Introduction to Computer Programming
Flowcharting An Introduction
Introduction to Video Game Programming (VGP) Mr. Shultz.
Algorithms and Flowcharts for Programming CFD
1 Introduction to Flowcharting. 2 Writing a program Defining the problem –Write down what the program will do Planning –Write down the steps, draw a flowchart.
1 Introduction to Flowcharting. 2 Writing a program Defining the problem –Write down what the program will do Planning –Write down the steps, draw a flowchart.
Algorithm & Flow Charts
Flowcharts.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Flowcharts. Problem Solving Computer programs are written to solve problems or perform tasks Programmers translate the solutions or tasks into a language.
1 Program Planning and Design Important stages before actual program is written.
Information Technology Fundamentals (ITF) Mr. Shultz.
Flowcharting An Introduction. Definition A flowchart is a schematic representation of an algorithm or a process.
Information Technology Fundamentals (ITF) Mr. Shultz.
Temperature SWBAT apply addition and subtraction of integers to Celsius and Fahrenheit temperature; use formulas to estimate temperatures in degrees Celsius.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
1 Programming Tools Flowcharts Pseudocode Hierarchy Chart Direction of Numbered NYC Streets Algorithm Class Average Algorithm.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Introduction to Video Game Programming (VGP) Mr. Shultz.
Information Technology Fundamentals (ITF) Mr. Shultz.
Problem, Problem Solving, Algorithm & Flow Charts –Part 1 Presented By Manesh T Course:101 CS 101CS Manesh T1.
1 Introduction to Flowcharting Computer Science Principles ASFA.
Temperature.
Chapter 2- Visual Basic Schneider1 Chapter 2 Problem Solving.
Learning about Inverse Operations. What is the inverse of Opening the door? Turning Right? Driving Forward? The inverse undoes the original function.
Temperature Measurement
Lecture #1: Introduction to Algorithms and Problem Solving Dr. Hmood Al-Dossari King Saud University Department of Computer Science 6 February 2012.
Program Program is a collection of instructions that will perform some task.
Problem Solving Flowcharts. Flowcharts Introduction  Flowcharts allow us to create a visual representation of a solution to a problem DRAW  With flowcharts,
Program Design & Development EE 201 C7-1 Spring
 Problem Analysis  Coding  Debugging  Testing.
Creating a Flowchart Computer Integrated Manufacturing
GC101 Introduction to computers and programs
Flowchart Symbols Terminal Process Input/ Output Decision
CS111 Computer Programming
Lecture 2 Introduction to Programming
Programming Logic n Techniques
PROBLEM SOLVING CSC 111.
Structured Program Design
CSC128 FUNDAMENTALS OF COMPUTER PROBLEM SOLVING
ME 142 Engineering Computation I
Flowcharts and Pseudocode
Introduction to Programming
WRITING AN ALGORITHM, PSEUDOCODE, AND FLOWCHART LESSON 2.
Introduction Worksheet
Presentation transcript:

Introduction to Video Game Programming (VGP) Mr. Shultz

Today’s Objectives and Bell-Ringer Bell-Ringer 1.What are made using algorithms? 2.What is the formula for converting a Celsius temperature to Fahrenheit? 3.What are the seven steps in the algorithm to convert Celsius to Fahrenheit? Objectives Given an online lesson on flowcharts, TSW illustrate how simple English instructions can be translated into flowchart symbols with no errors. (BUS )

Bell-Ringer 1. What are made using algorithms? All computer programs, or applications

Bell-Ringer 2. What is the formula for converting a Celsius temperature to Fahrenheit? F = (C * 9/5) + 32

Bell-Ringer 3. What are the seven steps in the algorithm to convert Celsius to Fahrenheit? Start Input - Get Celsius temperature Process - Multiply times 9 Process - Divide by 5 Process - Add 32 Output - Display Fahrenheit temperature End

Flowcharting Schematic (or graphic) representation of an algorithm or sequence of steps Shows the flow of control among the steps in a program

Flowcharting Symbols Start/End (Terminator) Decision Start/End Input/ Output Process Input/Output (Data) Action or Process (Process) Decision

Flowcharting

Flowcharting Temperature Conversion  Start Start Get Celsius Multiply times 9 End Divide by 5 Add 32 Display Fahrenheit  End  (Output) Display Fahrenheit  (Process) Add 32  (Process) Divide by 5  (Process) Multiply times 9  (Input) Get Celsius

Class Work Complete Algorithm lesson and worksheet Complete Flowcharting Lesson and worksheet PowerPoint file must be completed before turning in worksheet If you have time: Complete FBLA worksheets

Introduction to Video Game Programming (VGP) Mr. Shultz