Chapter 13 Control Structures

Similar documents
Chapter 13 Control Structures

Chapter 13. Control Structures

Control Structures. Chapter 13 Control Structures. Example If Statements. ! Conditional. if (condition) action;

Lecture 5: C programming

Introduction to C Part 1 HLL s and the Basic Syntax. (Ch11 & 12)

Syntax of for loop is as follows: for (inite; terme; updatee) { block of statements executed if terme is true;

Problem Solving in C. Stepwise Refinement. ...but can stop refining at a higher level of abstraction. Same basic constructs. as covered in Chapter 6

Introduction. C provides two styles of flow control:

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

Chapter 6. Loops. Iteration Statements. C s iteration statements are used to set up loops.

Repetition Structures

Loops / Repetition Statements

Programming for Electrical and Computer Engineers. Loops

PDS Lab Section 16 Autumn Tutorial 3. C Programming Constructs

Control Flow. COMS W1007 Introduction to Computer Science. Christopher Conway 3 June 2003

Statements. Control Flow Statements. Relational Operators. Logical Expressions. Relational Operators. Relational Operators 1/30/14

MODULE 2: Branching and Looping

n Group of statements that are executed repeatedly while some condition remains true

Chapter 4: Expressions. Chapter 4. Expressions. Copyright 2008 W. W. Norton & Company. All rights reserved.

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

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

Looping. Arizona State University 1

Dept. of CSE, IIT KGP

Comments. Comments: /* This is a comment */

Repetition Structures II

ECE15: Introduction to Computer Programming Using the C Language. Lecture Unit 4: Flow of Control

Chapter 6 Programming the LC-3

Lecture 7 Tao Wang 1

Repetition and Loop Statements Chapter 5

Informatica e Sistemi in Tempo Reale

Fundamentals of Programming

CS110D: PROGRAMMING LANGUAGE I

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

CS1100 Introduction to Programming

Chapter 5: Control Structures

Example. CS 201 Selection Structures (2) and Repetition. Nested if Statements with More Than One Variable

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

Chapter 3 Structured Program Development

Theory of control structures

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

Lecture 10. Daily Puzzle

공학프로그래밍언어 (PROGRAMMING LANGUAGE FOR ENGINEERS) -CONTROL FLOW : LOOP- SPRING 2015, SEON-JU AHN, CNU EE

Day06 A. Young W. Lim Wed. Young W. Lim Day06 A Wed 1 / 26

204111: Computer and Programming

CpSc 1111 Lab 4 Part a Flow Control, Branching, and Formatting

STUDENT OUTLINE. Lesson 8: Structured Programming, Control Structures, if-else Statements, Pseudocode

To become familiar with array manipulation, searching, and sorting.

(Refer Slide Time: 00:26)

ECE 2400 Computer Systems Programming Fall 2018 Topic 1: Introduction to C

ITC213: STRUCTURED PROGRAMMING. Bhaskar Shrestha National College of Computer Studies Tribhuvan University

Branching is deciding what actions to take and Looping is deciding how many times to take a certain action.

REPETITION CONTROL STRUCTURE LOGO

Chapter 6. Section 6.4 Altering the Flow of Control. CS 50 Hathairat Rattanasook

CSE101-lec#12. Designing Structured Programs Introduction to Functions. Created By: Amanpreet Kaur & Sanjeev Kumar SME (CSE) LPU

Flow of Control. Selection. if statement. True and False in C False is represented by any zero value. switch

Fundamental of Programming (C)

CSCE150A. Introduction. While Loop. Compound Assignment. For Loop. Loop Design. Nested Loops. Do-While Loop. Programming Tips CSCE150A.

Computer Science & Engineering 150A Problem Solving Using Computers. Chapter 5. Repetition in Programs. Notes. Notes. Notes. Lecture 05 - Loops

Loops / Repetition Statements. There are three loop constructs in C. Example 2: Grade of several students. Example 1: Fixing Bad Keyboard Input

Fundamentals of Programming

while for do while ! set a counter variable to 0 ! increment it inside the loop (each iteration)

Programming for Engineers Iteration

Quiz Determine the output of the following program:

5.1. Chapter 5: The Increment and Decrement Operators. The Increment and Decrement Operators. Looping. ++ is the increment operator.

Week 2. Relational Operators. Block or compound statement. if/else. Branching & Looping. Gaddis: Chapters 4 & 5. CS 5301 Spring 2018.

Introduction to Computing Lecture 07: Repetition and Loop Statements (Part II)

Loops and Files. of do-while loop

CSE123 LECTURE 3-1. Program Design and Control Structures Repetitions (Loops) 1-1

3 The L oop Control Structure

Flow Control. CSC215 Lecture

COMP 208 Computers in Engineering

CHAPTER : 9 FLOW OF CONTROL

CPE 112 Spring 2015 Exam II (100 pts) March 4, Definition Matching (8 Points)

CS 106 Introduction to Computer Science I

M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH C LANGUAGE

& Technology. Expression? Statement-x. void main() int no; scanf("%d", &no); if(no%2==0) if(no%2!=0) Syllabus for 1. of execution of statements.

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

Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 5-1

while (condition) { body_statements; for (initialization; condition; update) { body_statements;

Programming Language A

Fundamental of Programming (C)

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

Linear execution of statements. CISC 1600/1610 Computer Science I. Alternatives to linear execution. Linear execution of statements

Computer Programming. Basic Control Flow - Loops. Adapted from C++ for Everyone and Big C++ by Cay Horstmann, John Wiley & Sons

Sudeshna Sarkar Dept. of Computer Science & Engineering. Indian Institute of Technology Kharagpur

Main Program. C Programming Notes. #include <stdio.h> main() { printf( Hello ); } Comments: /* comment */ //comment. Dr. Karne Towson University

Structured Program Development

LAB 6: While and do-while Loops

C Language Part 2 Digital Computer Concept and Practice Copyright 2012 by Jaejin Lee

Other Loop Options EXAMPLE

Yacoub Sabatin Muntaser Abulafi Omar Qaraeen

BRANCHING if-else statements

Programming and Data Structures Mid-Semester - Solutions to Sample Questions Dept. of Computer Science and Engg. IIT Kharagpur Spring

Java. Programming: Chapter Objectives. Why Is Repetition Needed? Chapter 5: Control Structures II. Program Design Including Data Structures

CSE 130 Introduction to Programming in C Control Flow Revisited

*Starting Out with C++: From Control Structures through Objects, 7/E* by *Tony Gaddis* COMPUTER PROGRAMMING LECTURE 05 LOOPS IMRAN IHSAN

Subject: PIC Chapter 2.

Chapter 4. Flow of Control

While Loops CHAPTER 5: LOOP STRUCTURES. While Loops. While Loops 2/7/2013

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

Transcription:

Chapter 13 Control Structures

Highlights Sequence action_1 action_2 Conditional Iteration 13-2

Control Structures Conditional making a decision about which code to execute, based on evaluated expression if if-else switch Iteration executing code multiple times, ending based on evaluated expression while for do-while 13-3

If if (condition) action; condition F T action Condition is a C expression, which evaluates to TRUE (non-zero) or FALSE (zero). Action is a C statement, which may be simple or compound (a block). 13-4

Example If Statements if (x <= 10) y = x * x + 5; if (x <= 10) { y = x * x + 5; z = (2 * y) / 3; if (x <= 10) y = x * x + 5; z = (2 * y) / 3; compound statement; both executed if x <= 10 (you now know why compound statements are needed) only first statement is conditional; second statement is always executed 13-5

More If Examples if (0 <= age && age <= 11) kids += 1; if (month == 4 month == 6 month == 9 month == 11) printf( The month has 30 days.\n ); if (x = 2) y = 5; always true, so action is always executed! This is a common programming error (= instead of ==), not caught by compiler because it s syntactically correct. 13-6

If s Can Be Nested if (x == 3) if (y!= 6) { z = z + 1; w = w + 2; is the same as... if ((x == 3) && (y!= 6)) { z = z + 1; w = w + 2; 13-7

Generating Code for If Statement ; if (x == 2) y = 5; LDR R0, R5, #0 ; load x into R0 ADD R0, R0, #-2 ; subtract 2 BRnp NOT_TRUE ; if non-zero, x is not 2 AND R1, R1, #0 ; store 5 to y ADD R1, R1, #5 STR R1, R5, #-1 NOT_TRUE... ; next statement 13-8

If-else if (condition) action_if; else action_else; T condition F action_if action_else Else allows choice between two mutually exclusive actions without re-testing condition. 13-9

Generating Code for If-Else if (x) { y++; z--; else { y--; z++; ELSE DONE LDR R0, R5, #0 BRz ELSE ; x is not zero LDR R1, R5, #-1 ; incr y ADD R1, R1, #1 STR R1, R5, #-1 LDR R1, R5, #-2 ; decr z ADD R1, R1, #-1 STR R1, R5, #-2 BR DONE ; skip else code ; x is zero LDR R1, R5, #-1 ; decr y ADD R1, R1, #-1 STR R1, R5, #-1 LDR R1, R5, #-2 ; incr z ADD R1, R1, #1 STR R1, R5, #-2... ; next statement 13-10

Matching Else with If (ambiguity resolution) Else is always associated with closest unassociated if. if (x!= 10) if (y > 3) z = z / 2; else z = z * 2; is the same as... if (x!= 10) { if (y > 3) z = z / 2; else z = z * 2; is NOT the same as... if (x!= 10) { if (y > 3) z = z / 2; else z = z * 2; 13-11

Chaining If s and Else s if (month == 4 month == 6 month == 9 month == 11) printf( Month has 30 days.\n ); else if (month == 1 month == 3 month == 5 month == 7 month == 8 month == 10 month == 12) printf( Month has 31 days.\n ); else if (month == 2) printf( Month has 28 or 29 days.\n ); else printf( Don t know that month.\n ); 13-12

While while (test) loop_body; test F T loop_body Executes loop body as long as test evaluates to TRUE (non-zero). Note: Test is evaluated before executing loop body. 13-13

Generating Code for While x = 0; while (x < 10) { printf( %d, x); x = x + 1; LOOP DONE AND R0, R0, #0 STR R0, R5, #0 ; x = 0 ; test LDR R0, R5, #0 ; load x ADD R0, R0, #-10 BRzp DONE ; loop body LDR R0, R5, #0 ; load x... <printf>... ADD R0, R0, #1 ; incr x STR R0, R5, #0 JMP LOOP ; test again ; next statement 13-14

Infinite Loops The following loop will never terminate: x = 0; while (x < 10) printf( %d, x); Loop body does not change condition, so test never fails. Img src: wikipedia This is a common programming error that can be difficult to find. 13-15

For for (init; test; re-init) statement is equivalent to init; while (test) { statement re-init Executes loop body as long as test evaluates to TRUE (non-zero). Initialization and re-initialization code included in loop statement. F init test T loop_body re-init Note: Test is evaluated before executing loop body. 13-16

Generating Code for For for (i = 0; i < 10; i++) printf( %d, i); This is the same as the while example! LOOP ; init AND R0, R0, #0 STR R0, R5, #0 ; i = 0 ; test LDR R0, R5, #0 ; load i ADD R0, R0, #-10 BRzp DONE ; loop body LDR R0, R5, #0 ; load i... <printf>... ; re-init ADD R0, R0, #1 ; incr i STR R0, R5, #0 JMP LOOP ; test again DONE ; next statement 13-17

Example For Loops /* -- what is the output of this loop? -- */ for (i = 0; i <= 10; i ++) printf("%d ", i); /* -- what does this one output? -- */ letter = 'a'; for (c = 0; c < 26; c++) printf("%c ", letter+c); /* -- what does this loop do? -- */ numberofones = 0; for (bitnum = 0; bitnum < 16; bitnum++) { if (inputvalue & (1 << bitnum)) numberofones++; 13-18

Nested Loops Loop body can (of course) be another loop. /* print a multiplication table */ for (mp1 = 0; mp1 < 10; mp1++) { for (mp2 = 0; mp2 < 10; mp2++) { printf( %d\t, mp1*mp2); printf( \n ); Braces aren t necessary, but they make the code easier to read. 13-19

Another Nested Loop The test for the inner loop depends on the counter variable of the outer loop. for (outer = 1; outer <= input; outer++) { for (inner = 0; inner < outer; inner++) { sum += inner; 13-20

For vs. While In general: For loop is preferred for counter-based loops. Explicit counter variable Easy to see how counter is modified each loop While loop is preferred for sentinel-based loops. Test checks for sentinel value. Either kind of loop can be expressed as the other, so it s really a matter of style and readability. 13-21

Do-While do loop_body; while (test); is equivalent to loop-body; while (test) loop-body Executes loop body as long as test evaluates to TRUE (non-zero). T loop_body test F Note: Test is evaluated after executing loop body, so the loop is executed at least once. 13-22

Problem Solving in C Stepwise Refinement as covered in Chapter 6...but can stop refining at a higher level of abstraction. Same basic constructs Sequence -- C statements Conditional if, if-else, switch Iteration -- while, for, do-while 13-23

Problem 1: Calculating Pi Calculate using its series expansion. User inputs number of terms. 4 4 3 4 5 4 7 n 1 4 ( 1) 2n 1 Start Initialize Get Input Evaluate Series Output Results Stop 13-24

Pi: 1st refinement Start Initialize Get Input Initialize iteration count count<terms F for loop T Evaluate Series Evaluate next term Output Results count = count+1 Stop 13-25

Pi: 2nd refinement Initialize iteration count count<terms F T count is odd F T Evaluate next term subtract new term add new term count = count+1 if-else 13-26

Pi: Code for Evaluate Terms double pi = 0.0; for (count=1; count <= numofterms; count++) { if (count % 2) { /* odd term */ pi = pi + (4.0 / (2.0 * count - 1)); else { /* even term */ pi = pi (4.0 / (2.0 * count - 1)); 13-27

Pi: Complete Code #include <stdio.h> main() { double pi = 0.0; int numofterms, count; printf("number of terms (must be 1 or larger) : "); scanf("%d", &numofterms); for (count=1; count <= numofterms; count++) { if (count % 2) { /* odd term */ pi = pi + (4.0 / (2.0 * count - 1)); else { /* even term */ pi = pi (4.0 / (2.0 * count - 1)); printf("the approximate value of pi is %f\n", pi); 13-28

Problem 2: Finding Prime Numbers Print all prime numbers less than 100. A number is prime if its only divisors are 1 and itself. All non-prime numbers less than 100 will have a divisor between 2 and 10. Start Initialize Print primes Stop 13-29

Primes: 1st refinement Start Initialize Print primes Initialize num = 2 num < 100 T Print num if prime F Stop num = num + 1 13-30

Primes: 2nd refinement Initialize num = 2 Divide num by 2 through 10 num < 100 T F no divisors? F Print num if prime T Print num num = num + 1 13-31

Primes: 3rd refinement Divide num by 2 through 10 Initialize divisor = 2 set flag to TRUE no divisors? T Print num F divisor <= 10 T set flag to FALSE if (num%divisor == 0) && (num!= divisor) divisor = divisor + 1 F 13-32

Primes: Using a Flag Variable To keep track of whether number was divisible, we use a "flag" variable. Set prime = TRUE, assuming that this number is prime. If any divisor divides the number and the divisor is not the number itself, set prime = FALSE. Once it is set to FALSE, it stays FALSE. After all divisors are checked, number is prime if the flag variable is still TRUE. Use macros to help readability. #define TRUE 1 #define FALSE 0 13-33

Primes: Complete Code #include <stdio.h> #define TRUE 1 #define FALSE 0 main () { int num, divisor, prime; Optimization: Could put a break here to avoid some work. (Section 13.5.2) /* start with 2 and go up to 100 */ for (num = 2; num < 100; num ++ ) { prime = TRUE; /* assume num is prime */ /* test whether divisible by 2 through 10 */ for (divisor = 2; divisor <= 10; divisor++) if (((num % divisor) == 0) && (num!= divisor)) prime = FALSE; /* not prime */ if (prime) /* if prime, print it */ printf("the number %d is prime\n", num); 13-34

Switch switch (expression) { case const1: action1; break; case const2: action2; break; default: action3; Disciplined use of switch statement evaluate expression = const1? F = const2? F T T action1 action2 action3 Alternative to long if-else chain. If break is not used, then case "falls through" to the next. 13-35

Switch Example /* same as month example for if-else */ switch (month) { case 4: case 6: case 9: case 11: printf( Month has 30 days.\n ); break; case 1: case 3: /* some cases omitted for brevity...*/ printf( Month has 31 days.\n ); break; case 2: printf( Month has 28 or 29 days.\n ); break; default: printf( Don t know that month.\n ); 13-36

More About Switch Case expressions must be constant. case i: /* illegal if i is a variable */ If no break, then next case is also executed. (Not a good practice) switch (a) { case 1: printf( A ); case 2: printf( B ); default: printf( C ); If a is 1, prints ABC. If a is 2, prints BC. Otherwise, prints C. 13-37

Break and Continue break; used only in switch statement or iteration statement passes control out of the smallest (loop or switch) statement containing it to the statement immediately following usually used to exit a loop before terminating condition occurs (or to exit switch statement when case is done) continue; used only in iteration statement terminates the execution of the loop body for this iteration loop expression is evaluated to see whether another iteration should be performed if for loop, also executes the re-initializer 13-38

Example What does the following loop do? for (i = 0; i <= 20; i++) { if (i%2 0) continue; printf("%d ", i); What would be an easier way to write this? What happens if break instead of continue? 13-39

꼭기억해야할것 Control Structures sequence conditional (if-else) iteration (while loop) Secondary Control Structures conditional if switch iteration for loop do-while loop miscellaneous continue break 11-40