50
Page 1 © Copyright 2018 STEAM Clown™ STEAM Clown™ & Productions STEAM Clown™ Productions Flow Chart & Algorithms Planning Your Code

STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

  • Upload
    others

  • View
    7

  • Download
    1

Embed Size (px)

Citation preview

Page 1: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 1 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

STEAM Clown™ Productions

Flow Chart & Algorithms Planning Your Code

Page 2: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 4 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

STEAM Clown™ Productions

See Appendix A, for Licensing & Attribution informationby-nc-sa-3.0

https://creativecommons.org/licenses/by-nc-sa/3.0/

https://creativecommons.org/faq/#what-does-some-rights-reserved-mean

Page 3: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 5 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

STEAM Clown™ Productions

Can I get a copy of these Slides? Yes, Probably…

Look Here – <Add Link>

Or, most presentation lecture slides can be found indexed on www.steamclown.organd maybe blogged about here on Jim The STEAM Clown’s Blog, where you can search for the presentation title. While you are there, sign up for email updates

Page 4: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 10 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•The first flowchart was created by Von Neumann in 1945•Flowchart are important for planning and working of a program•Flowcharts decreases our efforts i.e. they are easy to understand and check logics and algorithms•Flowcharts are important to do before you start writing code

Flowchart Introduction

Page 5: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 11 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•Prior Knowledge• How…• How…

•What You Will Know & Be Able To Do• Calculate… • Build a… • Be able to describe… how an R/C circuit works

What You Will Know…

Page 6: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 12 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•To what extent will the verb be measured?

•How will success be determined?

How Will You Be Measured

Page 7: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 13 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•Algorithm

•Flowchart

•Graphical

•Pseudocode

New Words…

Page 8: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 14 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

• It is a list of instructions specifying a precise description of a step by step process that terminates after a finite number of steps for solving an algorithm problem producing the correct answer in the end• It is a recipe for solving problems•A finite set of an instruction that specifies a sequence of

operation to be carried out in order to solve a specific problem.•An unambiguous procedure specifying a finite number of

steps to be taken.

Algorithms

Page 9: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 15 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

What’s another description for an Algorithms?

Flowcharts

Page 10: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 16 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

• Flowcharts are a graphical representation of a program• Representation of a solution to a particular problem, which

comes under the category of Programming Practices and Techniques

• Flowcharts are symbolic diagrams which shows type of data(numeric, character etc.), data flow, control flow and programming logics and algorithms.

What is a Flowchart?

Page 11: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 17 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•A typical programming task can be divided into

•two phases:• Problem solving phase

• Produce an ordered sequence of steps that describe solution of problem

• This sequence of steps is called an algorithm

• Implementation phase• implement the program in some programming language

Programming an Algorithm

Page 12: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 18 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•PSEUDOCODE - specifies the steps of algorithm using natural language of superimposed control structure.

•FLOWCHART - a traditional graphical tool with standardized symbols. Show the sequence of steps in an algorithm

ALGORITHM – Problem solving Phase

Page 13: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 19 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

• Finiteness – Has an exact number of steps to be taken and has an end• Absence of Ambiguity - means that every instruction is precisely

described and clearly specified• Sequence of Execution - instructions are performed from top to

bottom• Input and Output - defined the unknowns of the problem is specified

and with the expected outcome• Effectiveness - the solution prescribed is guaranteed to give a correct

answer and that the specified process is faithfully carried out• Scope Definition - applies to a specific problem or class of problem

PROPERTIES OF ALGORITHM

Page 14: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 20 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•State the problem clearly• A problem cannot be solved correctly unless it is

understood

•Plan and Write the Logical Order of Instructions• Refine the algorithm successively to get step by step

detailed algorithm• Get description that is very close to a computer language• The computer follows the direction exactly at the given

sequence.

Before You Start Writing Code…

Page 15: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 21 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•The flowchart should flow from top to bottom

• If the chart becomes complex, utilize connecting blocks

•Avoid intersecting flow lines

•Use meaningful description in the symbol

Flowcharting Guidlines

Page 16: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 22 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Flowchart Example

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

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

End

Page 17: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 23 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

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.

Rounded

Rectangle

Parallelogram

Rectangle

Rounded

Rectangle

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

End

Page 18: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 24 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Terminals

• Represented by rounded rectangles

• Indicate a starting or ending point

Terminal

Terminal

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross PayEnd

Start

End

Page 19: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 25 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Input/Output Operations

• represented by parallelograms

• indicate an input or output operation

Output Operation

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

End

Display “How many hours did

you work?”

Read Hours

Input / Output

Operation

Input Operation

Page 20: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 26 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Process

• represented by rectangles

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

Process

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

End

GrossPay = Hours * PayRate

Page 21: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 27 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

We will look at “Decisions” in a few slides

1

Page 22: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 28 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• Identify the Inputs and Outputs

• List Variables

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

End

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

1

Page 23: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 29 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• Output the question “Hours” to the users

Start

Display “How many hours did

you work?”

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

1

How many hours did you work?

Program Outputs “How many hours did you work?”

Page 24: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 30 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• Get Answer “Hours” from the users

Start

Display “How many hours did

you work?”

Read Hours

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

2

How many hours did you work?

25

How many hours did you work?25

User types 25

Page 25: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 31 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• Output the question “PayRate” to the users

• Get Answer “PayRate” from the users

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

4

How many hours did you work?How much do you get per hour?

$16

25Program Outputs “How do you get?”

Get PayRate from User

$16

Page 26: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 32 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• Process the calculation

GrossPay = Hours * PayRate

GrossPay = 25 * $16

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

3

How many hours did you work?How much do you get per hour?

$16$400

25 $16

Page 27: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 33 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• Output the “GrossPay” to the users

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

1

How many hours did you work?$400

$16$400

25

Page 28: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 34 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Stepping Through The Flowchart

• End

GrossPay = Hours * PayRate

Start

Display “How many hours did

you work?”

Read Hours

Display “How much do you

get per hour?”

Read PayRate

Display Gross Pay

End

Variables & Their ValuesHours = ??

PayRate = ?? GrossPay = ??

How many hours did you work?$400

$16$400

25

Page 29: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 35 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•Sequence

•Selection

• Iteration

Three Flowchart Structures

What do you think these mean?

1

Page 30: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 36 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•A series of actions are performed in a sequence

•The pay calculation example was a sequence flowchart• There are not “decisions” or

selections in a top level sequence

Sequence Structures

Page 31: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 37 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•This where a question is being asked

•This is a decision point

•One of two possible actions is taken• This depends on the result

of the test condition• Typically is a “TRUE”

or “FALSE” answer

Selection Structure

?

?

Page 32: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 38 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•A new symbol, the diamond, indicates a yes/no question. If the answer to the question is yes, the flow follows one path. If the answer is no, the flow follows another path

Selection Structure

?YES NO

Page 33: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 40 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Selection Structure

• In the flowchart segment below, the question “is x < y?” is asked

• If the answer is NO, then process A is performed

• If the answer is YES, then process B is performed

NO YESx < y ?

Process A Process B

FALSE TRUE

3

Page 34: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 41 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•An iteration structure represents part of the program that repeats

•This type of structure is commonly known as a loop

Iteration Structure

??

Page 35: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 42 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Iteration Structure

• A loop tests a condition, and if the condition exists, it performs an action

• Then it tests the condition again

• If the condition still exists, the action is repeated

• This continues until the condition no longer exists.

?

FALSE

TRUE

Page 36: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 43 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Iteration Structure

• In the flowchart segment, the question “is x < y?” is asked

• If the answer is yes, then Process A is performed

• Then the question “is x < y?” is asked again

• Process A is repeated as long as x is less than y

• When x is no longer less than y, the iteration stops and the structure is exited

is x<y? Process A

FALSE

TRUE

What needs to happen in Process A?

3

Page 37: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 44 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Controlling an Iteration Structure

• The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite loop is created

• In this flowchart segment, x is never changed. Once the loop starts, it will never end.

is x<y? print x

FALSE

TRUE

QUESTION: How can this flowchart be modified so it is no longer an infinite loop?

3

Page 38: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 45 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Controlling an Iteration Structure

is x<y?

FALSE

TRUEANSWER: By adding an action within the iteration that changes the value of x

3

QUESTION: How can this flowchart be modified so it is no longer an infinite loop?

print x

x=x+1

Page 39: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 46 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

If x starts at 5 and y is = 10?

is x<y?

FALSE

TRUE

How many times does the loop loop?

print x

x=x+11st test of x < y x= 5

y = 10, and does not changeWhat is the value of y?

What is the value of x?

Print 5

2nd test of x < y x= 6

Print 6

3rd test of x < y x= 7

Print 7

4th test of x < y x= 8

Print 8

5th test of x < y x= 96th test of x < y x= 10

Print 9

x=5, y=10

16

Page 40: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 47 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

FALSE TRUEprint x+1

x=x+2End

x <= 6?

x = 2

Start Print 3Print 5Print 7

1st test of x <=6 x= 2

x <=6? and 6 doesn’t change

What is the Test?

What is the value of x?

2nd test of x <=6 x= 43rd test of x <=6 x= 64th test of x <=6 x= 8

x = 2x = 4x = 6x = 8

Page 41: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 48 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

A Pre-Test Iteration Structure

• This type of structure is known as a pre-test iteration structure

• The condition is tested BEFORE any actions are performed

• In a pre-test iteration structure, if the condition is not TRUE, the loop will never begin

is x<y?

FALSE

TRUE

1

print x

x=x+1

Page 42: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 49 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

A Post-Test Iteration Structure

• This flowchart segment shows a post-testiteration structure

• The condition is tested AFTER the actionsare performed

• A post-test iteration structure alwaysperforms its actions at least once

is x<y?

FALSE

TRUE

2

print x

x=x+1

Page 43: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 50 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

What if the Flowchart can’t fit on one page?

• A connector structure, lets you connect different flowchart segments

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

A

Start

End

A

A

Page 44: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 51 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Combining Structure

• This flowchart segment shows two selection structures combined

3

Print “x is within the limits”

Print “x is outside the limits” NO YES

x < max?

YESx > min?

NO

Print “x is outside the limits”

Page 45: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 53 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

STEAM Clown™ Productions

Reference Slides

Page 46: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 54 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

If x starts at 5 and y is = 10?

is x<y?

FALSE

TRUE

How many times does the loop loop?

print x

x=x+11st test of x < y x= 5

y = 10, and does not changeWhat is the value of y?

What is the value of x?

Print 5

2nd test of x < y x= 6

Print 6

3rd test of x < y x= 7

Print 7

4th test of x < y x= 8

Print 8

5th test of x < y x= 96th test of x < y x= 10

Print 9

x=5, y=10

16

Page 47: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 56 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Page 48: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 57 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

STEAM Clown™ Productions

Appendix

Page 49: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 58 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

Appendix A: License & Attribution

• This interpretation is primarily the Intellectual Property of Jim Burnham, Top STEAM Clown, at STEAMClown.org

• This presentation and content is distributed under the Creative Commons License CC-by-nc-sa-3.0

• My best attempt to properly attribute, or reference any other images, sources or work I have used are listed in Appendix B

Page 50: STEAM Clown™ Productions · Controlling an Iteration Structure • The action performed by an iteration structure must eventually cause the loop to terminate. Otherwise, an infinite

Page 59 © Copyright 2018 STEAM Clown™

STEAM Clown™

&Productions

•This tutorial is based upon Appendix C from “Starting Out with C++: From Control Structures to Objects (5th Edition)” - Copyright Tony Gaddis 2007, Published by Addison-Wesley

Appendix B: Attribution for Sources Used