40
Computer Science I CS 135 5. Selection: If and Switch Controls René Doursat Department of Computer Science & Engineering University of Nevada, Reno Spring 2006

5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

Computer Science ICS 135

5. Selection: If and Switch Controls

René Doursat

Department of Computer Science & EngineeringUniversity of Nevada, Reno

Spring 2006

Page 2: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 2

Computer Science ICS 135

0. Course Presentation

1. Introduction to Programming

2. Functions I: Passing by Value

3. File Input/Output

4. Predefined Functions

5. If and Switch Controls

6. While and For Loops

7. Functions II: Passing by Reference

8. 1-D and 2-D Arrays

Page 3: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 3

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

b. If / Else Selection Structures

c. Logical Expressions

d. Switch Selection Structures

Page 4: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 4

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

What are control structures?Selection structuresRepetition structures (next week)

b. If / Else Selection Structures

c. Logical Expressions

d. Switch Selection Structures

Page 5: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5

5.a Control StructuresWhat are control structures?

Reminder: there are six basic computer operations1. a computer can receive information (Get, Read, etc.)2. a computer can put out information (Display, etc.)3. a computer can perform arithmetic (Add, Divide, etc.)4. a computer can assign a value to a variable or

memory location (Set, Initialize, etc.)5. a computer can compare variables and select one of

two alternate actions → selection structures6. a computer can repeat a group of actions

→ repetition structures

Page 6: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 6

5.a Control StructuresWhat are control structures?

Structure theoremit is possible to write any computer program by using only threebasic control structures that are easily represented in pseudocode:

sequence structuresselection structuresrepetition structures

introduce branching (“jumps”)in the sequential logic

Sequence structuresstraightforward execution of one processing step after anothersequence of pseudocode statements: do this, do that, then this, then that, etc.

Page 7: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 7

5.a Control StructuresWhat are control structures?

Selection structurescondition and choice between two actions, depending on whether the condition is true or falserepresented by the pseudocode keywords IF, THEN, ELSE, and ENDIF

Repetition structuresblock of statements to be executed repeatedly, as long as a condition is truerepresented by the pseudocode keywords WHILE and ENDWHILE

Page 8: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 8

5.a Control StructuresWhat are control structures?

Sequence, selection and repetition structures

Page 9: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 9

5.a Control StructuresSelection structures

A computer can compare variables and select one of two alternate actions → selection structures

examples:one-way − if it starts to rain, go inside the buildingtwo-way − if the car starts, drive; otherwise, take the bus

pseudocode examples:IF age >= 12 THEN

Prompt for entrance feeENDIF

One-way selection

IF student is female THENAdd 1 to female count

ELSEAdd 1 to male count

ENDIF Two-way selection

Page 10: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 10

5.a Control StructuresSelection structures

Anatomy of an if /else selection structure (pseudocode)the “header” is a logical expressionthe “body” contains actions that are performed (or not) depending on the header

IF (true or false logical expression) [THEN]

actions that are performed if truebody

header

Anatomy of an if / else selection structure

alternativebody

ELSE

other actions that are performed if false

Page 11: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 11

5.a Control StructuresRepetition structures (next week)

A computer can repeat a group of actions→ repetition structures

examples:calculate 100 student gradespour water in the saucepan until it is fullcook the pasta until it is “al dente”

pseudocode example:WHILE water_level < pan_height

Add 1 tablespoon to water_volumewater_level = water_volume / pan_surface

ENDWHILE

Page 12: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 12

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

What are control structures?Selection structuresRepetition structures (next week)

b. If / Else Selection Structures

c. Logical Expressions

d. Switch Selection Structures

Page 13: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 13

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

b. If / Else Selection StructuresOne-way selection structure: ifTwo-way selection structure: if … elseCompound statement selection structuresNested selection structuresConditional operator

c. Logical Expressions

d. Switch Selection Structures

Page 14: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 14

5.b If / Else Selection StructuresOne-way selection structure: if

A one-way selection decides whether to execute a statement or not

Page 15: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 15

5.b If / Else Selection StructuresOne-way selection structure: if

Syntax of a one-way selectionif (expression) if (age >= 12)

statement pay_entrance();

if is a reserved keywordexpression is a logical expression

sometimes called a “decision maker” because it decides whether to execute the statement that follows it or not

statement follows expression and can be any C++ statementsometimes called the “action statement”statement is executed if the value of expression is truestatement is bypassed if the value is false: the program goes to the next statement directly

Page 16: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 16

5.b If / Else Selection StructuresTwo-way selection structure: if … else

A two-way selection decides whether to execute one statement or another

Page 17: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 17

5.b If / Else Selection StructuresTwo-way selection structure: if … else

Syntax of a two-way selectionif (expression) if (age >= 12)

statement1 pay(8.00);else else

statement2 pay(3.50);

else is also a reserved keywordexpression is a logical expression

statement1 and statement2 can be any C++ statementsstatement1 is executed if the value of expression is truestatement2 is executed if the value is falseafter that, if there was not failure or early exit, the program goes to the next statement after the if / else structure

Page 18: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 18

5.b If / Else Selection StructuresCompound statement selection structures

Compound statementthe body of an if/else structure can contain multiple C statementsa block of statements is called a “compound statement” and must be surrounded with curly braces { }

if (expression) { if (age >= 12) {statement1 cout << "adult";statement2 pay(8.00);statement3 ...

} }else { else {

statement4 cout << "child";statement5 pay(3.50);

} }

Page 19: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 19

5.b If / Else Selection StructuresNested selection structures

If/else structures can be inserted inside other if/else structures

some statements inside the body of a selection structure can themselves be if/else selection structuresif (expression1) {

statement1} else {

if (expression2) {statement2

} else {statement3

}}

if (expression1) {statement1

}else if (expression2) {

statement2}else {

statement3}

same code

Page 20: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 20

5.b If / Else Selection StructuresNested selection structures

Programming is like a construction gamecontrol structures can be nested in other control structures

if ( ) {

} else {

}

if ( ) {

} else {

}

→ however, too much nesting inside the same area of code is not good programming practice

Page 21: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 21

5.b If / Else Selection StructuresNested selection structures

if ( ) {

} else {

}

Programming is like a construction game→ breaking up into FUNCTIONS is better practice

myfunction(…);

myfunction(…)

{

if ( ) {

} else {

}}

it will generally depend on the size of a compound statement: if it gets too big, cut it out and put it in a function

Page 22: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 22

5.b If / Else Selection StructuresConditional operator

The conditional operator is a one-line shortcut for ifthe conditional operator is used exclusively for conditional assignment statements involving the same variableinstead ofif (expression) {

x = value1;} else {

x = value2;}

you can writex = (expression) ? value1 : value2;

using the question mark ? and colon : symbols

Page 23: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 23

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

b. If / Else Selection StructuresOne-way selection structure: ifTwo-way selection structure: if / elseCompound statement selection structuresNested selection structuresConditional operator

c. Logical Expressions

d. Switch Selection Structures

Page 24: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 24

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

b. If / Else Selection Structures

c. Logical ExpressionsRelational operatorsLogical (Boolean) operatorsOrder of precedence

d. Switch Selection Structures

Page 25: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 25

5.c Logical Expressions

In this section, we look at the header of if / else selection structures

IF (true or false logical expression)

actions performed if trueELSE

actions performed if false

Page 26: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 26

5.c Logical ExpressionsRelational operators

Relational operators allow to make comparisons

a relational operatoris a binary operator: it takes two numeric operandsyields a boolean result, true or false

false also evaluates as 0 and true evaluates as nonzero

Page 27: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 27

5.c Logical ExpressionsRelational operators

Relational operators allow to make comparisonsexamples:

8 < 8.01 8 less than 8.016 != 6.0 6 not equal to 6.07 >= 7 7 greater than or equal to 7'a' == 'b' char ‘a’ equal to ‘b’

truefalsetruefalse

unlike the assignment operator = it is ok to have expressions on both sides of a relational operator, for example if x is 6:

(7 + x/5.0) > (x + 2.1) is true

because of precision problems, use caution when equating floating-point expressions (using ==)

2.0/7 + 5.0/7 == 1.0 is likely to be false

Page 28: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 28

5.c Logical ExpressionsRelational operators

Relational operators allow to make comparisonsrelational operators are strictly binary

0 <= x < 10 is illegal syntax

the operator && (“and”) is a logical operator; we will look at logical operators in the next slides

it must be written:(0 <= x) && (x < 10)

alphabetically comparing strings using rel. ops is ok in C++"apple" <= "orange" (but is not ok in C or Java!)

caution when comparing different data types, such as numbers and characters: 8 < '5' is true!

Page 29: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 29

5.c Logical ExpressionsRelational operators

Comparing characters and stringsrelational operators compare the characters’ ASCII codes

Page 30: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 30

5.c Logical ExpressionsLogical (Boolean) operators

Logical operators allow to combine logical expressionsthere are 3 main logical operators in C++

&& the binary ‘and’ operator|| the binary ‘or’ operator! the unary ‘not’ operator

each logical operatortakes only logical values, true and false, as operandsyields only a logical value, true and false, as a result

Page 31: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 31

5.c Logical ExpressionsLogical (Boolean) operators

The ! (‘not’) operatorreverses the value of its logical operand

examples:!(8 > 15) not (8 is greater than 15)!(6 == 6) not (6 is equal to 6)!('a'>'b') not (‘a’ is greater than ‘b’)

true

false

true

Page 32: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 32

5.c Logical ExpressionsLogical (Boolean) operators

The && (‘and’) operatoris true if and only if both of its logical operands are true

examples:(14 >= 5) && ('A' == 'B')

(14 != 5) && ('A' < 'B')

(14 < 5) && !('$' >= '*')

!(14 < 5) && 3

false

true

false

true?? never mind

one false operand is enough to yield false

Page 33: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

5.c Logical ExpressionsLogical (Boolean) operators

Boolean algebra with && (‘and’) important equivalences among expressions containing &&

Logical expressionx && true

x && false

x && x

x && !x

x && y

x && (y && z)

Equivalent expressionx

false

x

false

y && x

(x && y) && z

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 33

Page 34: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 34

5.c Logical ExpressionsLogical (Boolean) operators

The || (‘or’) operatoris true if at least one of its logical operand is true

examples:(14 == 5) || ('A' <= 'B')

!(14 != 5) || ('A' == 'B')

(14 > 5) || !('$' >= '*')

!(14 > 5) || 0

true

false

true

false?? never mind

one true operand is enough to yield true

Page 35: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

5.c Logical ExpressionsLogical (Boolean) operators

Boolean algebra with || (‘or’) important equivalences among expressions containing ||

Logical expressionx || true

x || false

x || x

x || !x

x || y

x || (y || z)

Equivalent expressiontrue

x

x

truey || x

(x || y) || z

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 35

Page 36: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

5.c Logical ExpressionsLogical (Boolean) operators

Boolean algebra with && and ||important equivalences among expressions with && and ||

Logical expressionx || (y && z)

x || (x && z)

x && (y || z)

x && (x || z)

!(x || y)

!(x && y)

Equivalent expression(x || y) && (x || z)

x

(x && y) || (x && z)

x

!x && !y

!x || !y

De Morgan’s laws

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 36

Page 37: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 37

5.c Logical ExpressionsOrder of precedence

How to evaluate complex logical expressionsexpressions can mix arithmetic, relational and logical operators:

!(5 + 3 <= 9) || 6 < 15 && 7 != 8

1. arithmetic operators

2. relational operators

3. logical operators

evaluation follows a priority scheme

Page 38: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

5.c Logical ExpressionsOrder of precedence

Example of precedence in logical expressionsbool found = true;double x = 5.2, y = 3.4;int a = 5, b = 8, n = 0;char ch = '$';

Valuefalse

false

true

true

false

true

Logical expression!found && x >= 0

!(found || x < 0)

x + y <= 20.5

n < 1 || n > 100

'A' <= ch && ch <= 'Z' ||'a' <= ch && ch <= 'z'

a + 2 <= b && found

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 38

Page 39: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 39

5.c Logical ExpressionsOrder of precedence

Building expressions is like a construction game

if ( )

!

&&

||

>

!=y39

+x

Page 40: 5. Selection: If and Switch Controlsdoursat.free.fr/docs/CS135_S06/CS135_S06_5_Selection1.pdf · 2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 5 5.a

2/27/2006 CS 135 - Computer Science I - 5. Selection: If and Switch Controls 40

Computer Science ICS 135

5. Selection: If and Switch Controlsa. Control Structures

b. If / Else Selection Structures

c. Logical ExpressionsRelational operatorsLogical (Boolean) operatorsOrder of precedence

d. Switch Selection Structures