Chapter 8. Statement-Level Control Structures

Similar documents
Chapter 8. Statement-Level Control Structures

Chapter 8. Statement-Level Control Structures

Chapter 8. Statement-Level Control Structures ISBN

Chapter 8 Statement-Level Control Structures

Iterative Statements. Iterative Statements: Examples. Counter-Controlled Loops. ICOM 4036 Programming Languages Statement-Level Control Structure

Chapter 7. - FORTRAN I control statements were based directly on IBM 704 hardware

Statement level control structures

Control Structures. Outline. In Text: Chapter 8. Control structures Selection. Iteration. Gotos Guarded statements. One-way Two-way Multi-way

CPSC 3740 Programming Languages University of Lethbridge. Control Structures

Relational Expressions. Boolean Expressions. Boolean Expressions. ICOM 4036 Programming Languages. Boolean Expressions

Ch. 7: Control Structures

Chapter 8 Statement-Level Control Structure

CSE 452: Programming Languages. Outline of Today s Lecture. Expressions. Expressions and Control Flow

Statement-Level Control Structures

Statement-Level Control Structures

Flow of Control Execution Sequence

9/21/17. Outline. Expression Evaluation and Control Flow. Arithmetic Expressions. Operators. Operators. Notation & Placement

Flow Control. CSC215 Lecture

LECTURE 18. Control Flow

C++ Programming: From Problem Analysis to Program Design, Fourth Edition. Chapter 5: Control Structures II (Repetition)

Theory of control structures

Chapter 7 Control I Expressions and Statements

Introduction. C provides two styles of flow control:

C++ Programming: From Problem Analysis to Program Design, Third Edition

Computer Programming I - Unit 5 Lecture page 1 of 14

Control Structures. Lecture 4 COP 3014 Fall September 18, 2017

Java Programming: Guided Learning with Early Objects Chapter 5 Control Structures II: Repetition

CS 112 Introduction to Computing II. Wayne Snyder Computer Science Department Boston University

G Programming Languages - Fall 2012

Chapter 5: Control Structures II (Repetition) Objectives (cont d.) Objectives. while Looping (Repetition) Structure. Why Is Repetition Needed?

Principles of Programming Languages Lecture 22

Programming Languages Third Edition. Chapter 9 Control I Expressions and Statements

Flow Control: Branches and loops

Lecture 7 Tao Wang 1

COP4020 Programming Languages. Control Flow Prof. Robert van Engelen

REPETITION CONTROL STRUCTURE LOGO

Structure of Programming Languages Lecture 5

Introduction Primitive Data Types Character String Types User-Defined Ordinal Types Array Types. Record Types. Pointer and Reference Types

Chapter 2. Flow of Control. Copyright 2016 Pearson, Inc. All rights reserved.

Programming Languages Semantics

Chapter 7. Expressions and Assignment Statements

Programming for Engineers Iteration

Ordering Within Expressions. Control Flow. Side-effects. Side-effects. Order of Evaluation. Misbehaving Floating-Point Numbers.

Control Flow COMS W4115. Prof. Stephen A. Edwards Fall 2006 Columbia University Department of Computer Science

Repetition Structures

Condition-Controlled Loop. Condition-Controlled Loop. If Statement. Various Forms. Conditional-Controlled Loop. Loop Caution.

Flow of Control. Flow of control The order in which statements are executed. Transfer of control

V2 2/4/ Ch Programming in C. Flow of Control. Flow of Control. Flow of control The order in which statements are executed

Islamic University of Gaza Computer Engineering Dept. C++ Programming. For Industrial And Electrical Engineering By Instructor: Ruba A.

CS1100 Introduction to Programming

Expressions and Assignment Statements

C-LANGUAGE CURRICULAM

Expressions and Statements. Department of CSE, MIT, Manipal

Programming Basics and Practice GEDB029 Decision Making, Branching and Looping. Prof. Dr. Mannan Saeed Muhammad bit.ly/gedb029

Conditionals and Recursion. Python Part 4

ECE 122. Engineering Problem Solving with Java

Chapter 5. Names, Bindings, and Scopes

Control Structures in Java if-else and switch

Lecture Programming in C++ PART 1. By Assistant Professor Dr. Ali Kattan

C++ Programming Lecture 7 Control Structure I (Repetition) Part I

Loops and Conditionals. HORT Lecture 11 Instructor: Kranthi Varala

Loops! Loops! Loops! Lecture 5 COP 3014 Fall September 25, 2017

PLD Semester Exam Study Guide Dec. 2018

Software II: Principles of Programming Languages. Why Expressions?

Control Structures in Java if-else and switch

All copyrights reserved - KV NAD, Aluva. Dinesh Kumar Ram PGT(CS) KV NAD Aluva

Chapter 7. Expressions and Assignment Statements ISBN

STATS 507 Data Analysis in Python. Lecture 2: Functions, Conditionals, Recursion and Iteration

5. Control Statements

Chapter 7. Expressions and Assignment Statements

5.1. Chapter 5: The Increment and Decrement Operators. The Increment and Decrement Operators. The Increment and Decrement Operators

1 class Lecture3 { 2 3 "Selections" // Keywords 8 if, else, else if, switch, case, default. Zheng-Liang Lu Java Programming 88 / 133

The SPL Programming Language Reference Manual

DM550 / DM857 Introduction to Programming. Peter Schneider-Kamp

Ruby: Introduction, Basics

An Introduction to Programming with C++ Sixth Edition. Chapter 7 The Repetition Structure

\n is used in a string to indicate the newline character. An expression produces data. The simplest expression

Semantic Analysis. Outline. The role of semantic analysis in a compiler. Scope. Types. Where we are. The Compiler Front-End

4.1. Chapter 4: Simple Program Scheme. Simple Program Scheme. Relational Operators. So far our programs follow a simple scheme

INTRODUCTION TO C++ PROGRAM CONTROL. Dept. of Electronic Engineering, NCHU. Original slides are from

There are four numeric types: 1. Integers, represented as a 32 bit (or longer) quantity. Digits sequences (possibly) signed are integer literals:

Selec%on and Decision Structures in Java: If Statements and Switch Statements CSC 121 Spring 2016 Howard Rosenthal

Chapter Overview. More Flow of Control. Flow Of Control. Using Boolean Expressions. Using Boolean Expressions. Evaluating Boolean Expressions

Java Programming: Guided Learning with Early Objects Chapter 5 Control Structures II: Repetition

Logic is the anatomy of thought. John Locke ( ) This sentence is false.

Chapter 7. Expressions and Assignment Statements ISBN

DECISION STRUCTURES: USING IF STATEMENTS IN JAVA

int foo() { x += 5; return x; } int a = foo() + x + foo(); Side-effects GCC sets a=25. int x = 0; int foo() { x += 5; return x; }

Iteration: Intro. Two types of loops: 1. Pretest Condition precedes body Iterates 0+ times. 2. Posttest Condition follows body Iterates 1+ times

Chapter 3. More Flow of Control. Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

Conditionals and Loops

Chapter 6. Data Types ISBN

There are algorithms, however, that need to execute statements in some other kind of ordering depending on certain conditions.

The role of semantic analysis in a compiler

Chapter 7. Expressions and Assignment Statements (updated edition 11) ISBN

SEMANTIC ANALYSIS TYPES AND DECLARATIONS

Assoc. Prof. Dr. Marenglen Biba. (C) 2010 Pearson Education, Inc. All rights reserved.

Lexical Considerations

Chapter 6. Data Types

Chapter 6. Data Types ISBN

Transcription:

Chapter 8 Statement-Level Control Structures

Levels of Control Flow Within expressions Among program units Among program statements Copyright 2012 Addison-Wesley. All rights reserved. 1-2

Control Structure A control structure is a control statement and the statements whose execution it controls Design question Should a control structure have multiple entries? Copyright 2012 Addison-Wesley. All rights reserved. 1-3

Selection Statements A selection statement provides the means of choosing between two or more paths of execution Two general categories: Two-way selectors Multiple-way selectors Copyright 2012 Addison-Wesley. All rights reserved. 1-4

Two-Way Selection Statements General form: if control_expression then clause else clause Design Issues: What is the form and type of the control expression? How are the then and else clauses specified? How should the meaning of nested selectors be specified? Copyright 2012 Addison-Wesley. All rights reserved. 1-5

The Control Expression If the then reserved word or some other syntactic marker is not used to introduce the then clause, the control expression is placed in parentheses In C89, C99, Python, and C++, the control expression can be arithmetic In most other languages, the control expression must be Boolean Copyright 2012 Addison-Wesley. All rights reserved. 1-6

Clause Form In many contemporary languages, the then and else clauses can be single statements or compound statements In Perl, all clauses must be delimited by braces (they must be compound) Python uses indentation to define clauses if x > y : x = y print " x was greater than y" Copyright 2012 Addison-Wesley. All rights reserved. 1-7

Nesting Selectors Java example if (sum == 0) if (count == 0) result = 0; else result = 1; Which if gets the else? Java's static semantics rule: else matches with the nearest previous if Copyright 2012 Addison-Wesley. All rights reserved. 1-8

Nesting Selectors (continued) To force an alternative semantics, compound statements may be used: if (sum == 0) { } if (count == 0) result = 0; else result = 1; The above solution is used in C, C++, and C# Copyright 2012 Addison-Wesley. All rights reserved. 1-9

Nesting Selectors (continued) Statement sequences as clauses: Ruby if sum == 0 then if count == 0 then result = 0 else result = 1 end end Copyright 2012 Addison-Wesley. All rights reserved. 1-10

Multiple-Way Selection Statements Allow the selection of one of any number of statements or statement groups Design Issues: 1. What is the form and type of the control expression? 2. How are the selectable segments specified? 3. Is execution flow through the structure restricted to include just a single selectable segment? 4. How are case values specified? 5. What is done about unrepresented expression values? Copyright 2012 Addison-Wesley. All rights reserved. 1-11

Multiple-Way Selection: Examples C, C++, Java, and JavaScript switch (expression) { case const_expr 1 : stmt 1 ; case const_expr n : stmt n ; [default: stmt n+1 ] } Copyright 2012 Addison-Wesley. All rights reserved. 1-12

Multiple-Way Selection: Examples 1. Control expression can be integer, char, enum type 2. Selectable segments can be statement sequences, blocks, or compound statements 3. Any number of segments can be executed in one execution of the construct (there is no implicit branch at the end of selectable segments) 4. default clause is for unrepresented values (if there is no default, the whole statement does nothing) Copyright 2012 Addison-Wesley. All rights reserved. 1-13

Multiple-Way Selection: Examples C# Differs from C in that it has a static semantics rule that disallows the implicit execution of more than one segment Each selectable segment must end with an unconditional branch (goto or break) Also, in C# the control expression and the case constants can be strings Copyright 2012 Addison-Wesley. All rights reserved. 1-14

Implementing Multiple Selectors Approaches: Multiple conditional branches Store case values in a table and use a linear search of the table When there are more than ten cases, a hash table of case values can be used If the number of cases is small, an array whose indices are the case values and whose values are the case labels can be used Copyright 2012 Addison-Wesley. All rights reserved. 1-15

Multiple-Way Selection Using if Multiple Selectors can appear as direct extensions to two-way selectors, using else-if clauses, for example in Python: if count < 10 : bag1 = True elif count < 100 : bag2 = True elif count < 1000 : bag3 = True Copyright 2012 Addison-Wesley. All rights reserved. 1-16

Iterative Statements The repeated execution of a statement or compound statement is accomplished either by iteration or recursion General design issues for iteration control statements: 1. How is iteration controlled? 2. Where is the control mechanism in the loop? Copyright 2012 Addison-Wesley. All rights reserved. 1-17

Counter-Controlled Loops A counting iterative statement has a loop variable, and a means of specifying the initial and terminal, and stepsize values Design Issues: 1. What are the type and scope of the loop variable? 2. Should it be legal for the loop variable or loop parameters to be changed in the loop body, and if so, does the change affect loop control? 3. Should the loop parameters be evaluated only once, or once for every iteration? Copyright 2012 Addison-Wesley. All rights reserved. 1-18

Counter-Controlled Loops: Examples Ada for var in [reverse] discrete_range loop... end loop Design choices: - Type of the loop variable is that of the discrete range (A discrete range is a sub-range of an integer or enumeration type). - Loop variable does not exist outside the loop Copyright 2012 Addison-Wesley. All rights reserved. 1-19

Counter-Controlled Loops: Examples C-based languages for ([expr_1] ; [expr_2] ; [expr_3]) statement - The expressions can be whole statements, or even statement sequences, with the statements separated by commas If the second expression is absent, it is an infinite loop - The first expression is evaluated once, but the other two are evaluated with each iteration Copyright 2012 Addison-Wesley. All rights reserved. 1-20

Counter-Controlled Loops: Examples C++: the initial expression can include variable definitions (scope is from the definition to the end of the loop body) Copyright 2012 Addison-Wesley. All rights reserved. 1-21

Logically-Controlled Loops Repetition control is based on a Boolean expression Design issues: Pretest or posttest? Copyright 2012 Addison-Wesley. All rights reserved. 1-22

Logically-Controlled Loops: Examples C and C++ have both pretest and posttest forms: while (control_expr) loop body do loop body while (control_expr) Copyright 2012 Addison-Wesley. All rights reserved. 1-23

User-Located Loop Control Mechanisms Sometimes it is convenient for the programmers to decide a location for loop control (other than top or bottom of the loop) Copyright 2012 Addison-Wesley. All rights reserved. 1-24

User-Located Loop Control Mechanisms C, C++, Python, Ruby, and C# have unconditional unlabeled exits (break) Java and Perl have unconditional labeled exits (break in Java, last in Perl) C, C++, and Python have an unlabeled control statement, continue, that skips the remainder of the current iteration, but does not exit the loop Copyright 2012 Addison-Wesley. All rights reserved. 1-25

Unconditional Branching Transfers execution control to a specified place in the program Represented one of the most heated debates in 1960 s and 1970 s Major concern: Readability Some languages do not support goto statement (e.g., Java) C# offers goto statement (can be used in switch statements) Loop exit statements are restricted and somewhat camouflaged goto s Copyright 2012 Addison-Wesley. All rights reserved. 1-26

Guarded Commands Designed by Dijkstra Purpose: to support a new programming methodology that supported verification (correctness) during development Basic Idea: if the order of evaluation is not important, the program should not specify one Copyright 2012 Addison-Wesley. All rights reserved. 1-27

Selection Guarded Command Form if <Boolean expr> -> <statement> [] <Boolean expr> -> <statement>... [] <Boolean expr> -> <statement> fi Semantics: when construct is reached, Evaluate all Boolean expressions If more than one are true, choose one nondeterministically If none are true, it is a runtime error Copyright 2012 Addison-Wesley. All rights reserved. 1-28

Loop Guarded Command Form do <Boolean> -> <statement> [] <Boolean> -> <statement>... [] <Boolean> -> <statement> od Semantics: for each iteration Evaluate all Boolean expressions If more than one are true, choose one nondeterministically; then start loop again If none are true, exit loop Copyright 2012 Addison-Wesley. All rights reserved. 1-29

Guarded Commands: Rationale Connection between control statements and program verification is intimate Verification is impossible with goto statements Verification is possible with only selection and logical pretest loops Verification is relatively simple with only guarded commands Copyright 2012 Addison-Wesley. All rights reserved. 1-30