1 Introduction to Flowcharting. 2 Writing a program Defining the problem –Write down what the...

25
1 Introduction to Flowcharting

Transcript of 1 Introduction to Flowcharting. 2 Writing a program Defining the problem –Write down what the...

Page 1: 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

Page 2: 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.

2

Writing a program

• Defining the problem– Write down what the program will do

• Planning– Write down the steps, draw a flowchart

• Programming– Coding, including errors correction, testing

• Documenting– Adding comments

• Implementing– Improvement, making the program better

Page 3: 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.

3

Objective

• A program can be divided into 3 parts:

– Input data– Processing data – Calculation, etc.– Output information/results

Input Processing Output

Page 4: 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.

4

Arrows

• From Top to Bottom & from Left to Right

• Make turn

• Join together

Page 5: 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.

5

What is a Flowchart?

• A flowchart is a diagram that depicts the “flow” of a program.

• A diagram made up of symbols of various shapes connected by arrows.

• Those symbols indicate either actions to be taken or decisions to be made.

• It helps us planning & programming.

• The figure shown here is a flowchart for a pay-calculating program.

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Page 6: 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.

6

Basic Flowchart Symbols

• Notice there are three types of symbols in this flowchart:– rounded rectangles

– parallelograms

– a rectangle

• Each symbol represents a different type of operation.

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Rounded Rectangle

Parallelogram

Rectangle

Rounded Rectangle

Page 7: 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.

7

Basic Flowchart Symbols

• Terminals– represented by rounded

rectangles

– indicate a starting or ending point

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Terminal

START

END Terminal

Page 8: 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.

8

Basic Flowchart Symbols

• Input/Output Operations– represented by

parallelograms

– indicate an input or output operation

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Display message “How many

hours did you work?”

Read Hours

Input/Output Operation

Page 9: 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.

9

Basic Flowchart Symbols

• Processes– represented by rectangles

– indicates a process such as a mathematical computation or variable assignment

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Multiply Hours by PayRate.

Store result in GrossPay.

Process

Page 10: 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.

10

Stepping Through the Flowchart

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: ?PayRate: ?GrossPay: ?

Stepping Through the Flowchart

In the next seven slides we will step through each symbol in the flowchart. We will show the program output and the contents of the variables.

Page 11: 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.

11

Stepping Through the Flowchart

How many hours did you work?

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: ?PayRate: ?GrossPay: ?

Step 1: An Output Operation

Stepping Through the Flowchart

Screen Output

Page 12: 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.

12

Stepping Through the Flowchart

How many hours did you work? 40

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: 40PayRate: ?GrossPay: ?

Step 2: An Input Operation

(User types 40)

Stepping Through the Flowchart

The value 40 is stored in Hours.

Page 13: 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.

13

Stepping Through the Flowchart

How much do you get paid per hour?

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: 40PayRate: ?GrossPay: ?

Step 3: An Output Operation

Stepping Through the Flowchart

Screen Output

Page 14: 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.

14

Stepping Through the Flowchart

How much do you get paid per hour? 20

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: 40PayRate: 20GrossPay: ?

Step 4: Input Operation

(User types 20)

Stepping Through the Flowchart

The value 20 is stored in PayRate.

Page 15: 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.

15

How much do you get paid per hour? 20

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: 40PayRate: 20GrossPay: 800

Step 5: The product of Hours times PayRate is stored in GrossPay

Stepping Through the Flowchart

The value 800 is stored in GrossPay.

Page 16: 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.

16

Stepping Through the Flowchart

Your gross pay is 800

START

Display message “How many

hours did you work?”

Read Hours

Display message “How much do you get paid per

hour?”

Read PayRate

Multiply Hours by PayRate.

Store result in GrossPay.

Display GrossPay

END

Variable Contents:Hours: 40PayRate: 20GrossPay: 800

Step 6: An Output Operation

Screen Output

Page 17: 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.

17

Four Flowchart Structures

• Sequence (TODAY)

• Decision

• Repetition

• Case

Page 18: 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.

18

Sequence Structure

• A series of actions are performed in sequence• The pay-calculating example was a sequence

flowchart.

Page 19: 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.

19

Connectors

• Sometimes a flowchart will not fit on one page.

• A connector (represented by a small circle) allows you to connect two flowchart segments.

A

Page 20: 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.

20

Connectors

A

A

START

END

•The “A” connector indicates that the second flowchart segment begins where the first segment ends.

Page 21: 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.

21

Review

• What do each of the following symbols represent?

(Answer on next slide)

Page 22: 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.

22

Answer

• What do each of the following symbols represent?

Terminal

Input/Output Operation

Process

Page 23: 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.

23

Review

• Name the four flowchart structures.

(Answer on next slide)

Page 24: 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.

24

Answer

• Sequence• Decision• Repetition• Case

Page 25: 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.

25

Flowcharting ProblemsWrite out the steps to solve the problem, then draw the diagram1.Flowchart a program to input the radius of a circle, and then calculate and print the area. The formula is Area = Pi * Radius2

2.Flowchart a program that will input four marks and calculate the average.

3.Flowchart a program that will take a temperature in Fahrenheit (F) convert it to Centigrade (C) The formulas are below.

• C = ( F - 32) / 1.8 – Output the results with a message that states:“ ___ degrees C is equal to ___ degrees F”