Programming Lecture 4

Similar documents
Programming Lecture 4

Programming Lecture 4

Programming Lecture 4

CS 101 Computer Programming

CS 106A, Lecture 5 Booleans and Control Flow

Expressions, Statements, and Control Structures

Introduction. C provides two styles of flow control:

Repetition Structures

CS110D: PROGRAMMING LANGUAGE I

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

YEAH 2: Simple Java! Avery Wang Jared Bitz 7/6/2018

CS111: PROGRAMMING LANGUAGE II

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

LECTURE 5 Control Structures Part 2

Chapter 4: Control structures. Repetition

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

L o o p s. for(initializing expression; control expression; step expression) { one or more statements }

Flow Control. CSC215 Lecture

LECTURE 04 MAKING DECISIONS

Decision Making in C

Chapter 4: Control structures

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

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

What is Java? professional software engineering.

REPETITION CONTROL STRUCTURE LOGO

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

Chapter 4: Making Decisions

Example: Monte Carlo Simulation 1

Computer Programming I - Unit 5 Lecture page 1 of 14

Chapter 4: Making Decisions

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

APCS Semester #1 Final Exam Practice Problems

Lecture 5 Tao Wang 1

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

CS112 Lecture: Repetition Statements

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

STUDENT LESSON A12 Iterations

The for Loop. Lesson 11

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

Control Structures and Methods

Repetition CSC 121 Fall 2014 Howard Rosenthal

Chapter 4 Loops. int x = 0; while ( x <= 3 ) { x++; } System.out.println( x );

Repe$$on CSC 121 Fall 2015 Howard Rosenthal

Example. Write a program which sums two random integers and lets the user repeatedly enter a new answer until it is correct.

Control Structure: Loop

Simple Java YEAH Hours. Brahm Capoor and Vrinda Vasavada

Introduction to Programming in C Department of Computer Science and Engineering. Lecture No. #16 Loops: Matrix Using Nested for Loop

Chapter 5 Control Statements: Part 2 Section 5.2 Essentials of Counter-Controlled Repetition

Sequence structure. The computer executes java statements one after the other in the order in which they are written. Total = total +grade;

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

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

Pace University. Fundamental Concepts of CS121 1

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

CS106A Review Session

Repe$$on CSC 121 Spring 2017 Howard Rosenthal

Recap: Assignment as an Operator CS 112 Introduction to Programming

Programming Lecture 2. Programming by example (Chapter 2) Hello world Patterns Classes, objects Graphical programming

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

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

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

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

Chapter 4. Flow of Control

CS 112 Introduction to Programming

Chapter 4 The If Then Statement

Practice Midterm Examination

Variables Chris Piech CS106A, Stanford University. Piech, CS106A, Stanford University

204111: Computer and Programming

DECISION STRUCTURES: USING IF STATEMENTS IN JAVA

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 8: SEP. 29TH INSTRUCTOR: JIAYIN WANG

CS313D: ADVANCED PROGRAMMING LANGUAGE

CS112 Lecture: Loops

Nested Loops ***** ***** ***** ***** ***** We know we can print out one line of this square as follows: System.out.

Arithmetic Compound Assignment Operators

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

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

PDS Lab Section 16 Autumn Tutorial 3. C Programming Constructs

Score score < score < score < 65 Score < 50

switch-case Statements

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

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

Advanced if/else & Cumulative Sum

Review. Primitive Data Types & Variables. String Mathematical operators: + - * / % Comparison: < > <= >= == int, long float, double boolean char

This loop prints out the numbers from 1 through 10 on separate lines. How does it work? Output:

Chapter 5. Repetition. Contents. Introduction. Three Types of Program Control. Two Types of Repetition. Three Syntax Structures for Looping in C++

Loops and Files. Chapter 04 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz

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

Lecture 7 Tao Wang 1

Chapter 2: Functions and Control Structures

Jump Statements. The keyword break and continue are often used in repetition structures to provide additional controls.

Module 4: Decision-making and forming loops

Controls Structure for Repetition

Dept. of CSE, IIT KGP

Principles of Computer Science I

Announcements. Lab Friday, 1-2:30 and 3-4:30 in Boot your laptop and start Forte, if you brought your laptop

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

Lesson 06 Arrays. MIT 11053, Fundamentals of Programming By: S. Sabraz Nawaz Senior Lecturer in MIT Department of MIT FMC, SEUSL

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

CS 106 Introduction to Computer Science I

CSCE 206: Structured Programming in C++

Programming for Electrical and Computer Engineers. Loops

Transcription:

Five-Minute Review 1. What are classes and objects? What is a class hierarchy? 2. What is an expression? A term? 3. What is a variable declaration? 4. What is an assignment? What is precedence? 5. What do you know about Booleans? 1

Programming Lecture 4 Statement Forms (Chapter 4) Repeat N-Times Pattern Repeat-Until-Sentinel Pattern if/else? : switch while, do while Loop-and-a-Half Pattern for Animation

C H A P T E R 4 Statement Forms The Art and Science of ERIC S. ROBERTS Java An Introduction to Computer Science The statements was interesting but tough. Mark Twain, The Adventures of Huckleberry Finn, 1884 4.1 Statement types in Java 4.2 Control statements and problem solving 4.3 The if statement 4.4 The switch statement 4.5 The while statement 4.6 The for statement

Statement Types Recall: Expressions, are interested in value Recall: Classes, Methods, Statements Statements: units of execution, are interested in side effect Distinguish Expression statements Declaration statements Control flow statements Compound statements (blocks) 4

Expression Statements Assignment expressions Any use of ++ or -- Method invocations Object creation expressions 5

Statement Types in Java Programs in Java consist of a set of classes. Those classes contain methods, and each of those methods consists of a sequence of statements. Statements in Java fall into three basic types: Simple statements Compound statements Control statements Simple statements are formed by adding a semicolon to the end of a Java expression. Compound statements (also called blocks) consist of a sequence of statements enclosed in curly braces. Control statements fall into two categories: Conditional statements that specify some kind of test Iterative statements that specify repetition

Control Statements and Problem Solving Before looking at the individual control statement forms in detail, it helps to look more holistically at a couple of programs that make use of common control patterns. The next few slides extend the Add2Integers program from Chapter 2 to create programs that add longer lists of integers. These slides illustrate three different strategies: Adding new code to process eachinput value Repeating the input cycle a predetermined number of times Repeating the input cycle until the user enters a special sentinel value

if Statement if (condition) { statements to be executed if the condition is true if (condition) { statements to be executed if the condition is true else { statements to be executed if the condition is false Cascading if 8

Dangling Else if (x > 0) if (doprint) println( x positive ); else if (doprint) println( x not positive ); If an if has an else clause, always use braces in if clause! 9

Choosing between if and if/else As is true with most programming constructs, there is no public hard-and-fast void run() rule { that will tell you whether you need the println("this program averages a list of numbers."); basic if statement or the if/else form. println("enter values, one per line, using " + SENTINEL); println("to signal the end of the list."); The int total best general = 0; guideline is to think about the English description int count = of 0; the problem you are trying to solve. If that description while (true) contains { the words else or otherwise, there is a int value = readint("? "); good chance that the solution will use the else keyword. if (value == SENTINEL) break; total if (value += value;!= 0) { As an total example, += value; suppose that you wanted to change the AverageList count++; program so that it didn t include any zero values in the average. Here, you need a simple if statement println("the average average is is "" + + average that double makes average sure = that (double) the score total average is not / count; equal + + "."); "."); to 0. average average is is "" + + average average + + "."); average is " + average + "."); double average = (double) average is total " + / average count; + "."); average is " + average + "."); average is " + average + "."); println("the nonzero average is " + average + "."); "."); If you also wanted to count the nonzero scores, you would need to add an else clause to increment a counter variable in the case that value was equal to 0.

Common Forms of the if Statement The examples in the book use the if statement in the following forms: Single line if statement if (condition) statement if/else statement with curly braces if (condition) { statements true else { statements false Multiline if statement with curly braces if (condition) { statement... more statements... Cascading if statement if (condition 1 ) { statements 1 else if (condition 2 ) { statements 2... more else/if conditions... else { statements else

?: Operator condition? expression 1 : expression 2 12

switch Statement switch ( expression ) { case v 1 : statements to be executed if expression = v 1 break; case v 2 : statements to be executed if expression = v 2 break;... more case clauses if needed... default: statements to be executed if no values match break; 13

public void run() { println("this program shows the number of days in a month."); int month = readint("enter numeric month (Jan=1): "); switch (month) { case 2: println("28 days (29 in leap years)"); break; case 4: case 6: case 9: case 11: println("30 days"); break; case 1: case 3: case 5: case 7: case 8: case 10: cas 12: println("31 days"); break; default: println("illegal month number"); break; 14

Add4Integers public class Add4Integers extends ConsoleProgram { public void run() { println("this program adds four numbers."); int n1 = readint("enter n1: "); int n2 = readint("enter n2: "); int n3 = readint("enter n3: "); int n4 = readint("enter n4: "); int total = n1 + n2 + n3 + n4; println("the total is " + total + "."); 15

Repeat-N-Times Idiom for (int i = 0; i < repetitions; i++) { statements to be repeated 16

AddNIntegers public class AddNIntegers extends ConsoleProgram { public void run() { println("this program adds " + N + " numbers."); int total = 0; for (int i = 0; i < N; i++) { int value = readint("? "); total += value; println("the total is " + total + "."); private static final int N = 100; 17

Repeat-Until-Sentinel Idiom while (true) { prompt user and read in a value if (value == sentinel) break; rest of loop body 18

AddIntegerList public class AddIntegerList extends ConsoleProgram { public void run() { println("this program adds a list of integers."); println("enter values, one per line, using " + SENTINEL); println("to signal the end of the list."); int total = 0; while (true) { int value = readint("? "); if (value == SENTINEL) break; total += value; println("the total is " + total + "."); private static final int SENTINEL = 0; 19

AddIntegerList public void run() { println("this program adds a list of integers."); println("enter values, one per line, using " + SENTINEL); println("to signal the end of the list."); int total = 0; while (true) { int value = readint("? "); if (value == SENTINEL) break; total += value; value total println("the total is " + total + "."); 12 3 0 01 3 6 AddIntegerList This program adds a list of integers. Enter values, one per line, using 0 to signal the end of the list.? 1? 2? 3? 0 The total is 6. 20 skip simulation

Exercise: Control Patterns Using the AddIntegerList program as a model, write a new AverageList program that reads a set of integers from the user and displays their average. Because 0 values might well appear, for example, in an average of exam scores, change the sentinel value so that the input stops when the user enters -1. It is important to keep in mind that the average of a set of integers is not necessarily an integer. The AverageList program will require the following changes: Convert the variable total to a double before computing the average Change the definition of the SENTINEL constant Keep a count of the number of input values along with the sum Update the user messages and program documentation

The AverageList Program public class AverageList extends ConsoleProgram { public void run() { println("this program averages a list of numbers."); println("enter values, one per line, using " + SENTINEL); println("to signal the end of the list."); int total = 0; int count = 0; while (true) { int value = readint("? "); if (value == SENTINEL) break; total += value; count++; double average = (double) total / count; println("the average is " + average + "."); private static final int SENTINEL = -1;

while, do while Statements while ( condition ) { statements to be repeated do { statements to be repeated while ( condition ) 23

DigitSum public void run() { println("this program sums the digits in an integer."); int n = readint("enter a positive integer: "); int dsum = 0; while ( n > 0 ) { dsum += n % 10; n /= 10; println("the sum of the digits is " + dsum); n dsum 01729 18 19 09 11 This program sums the digits in an integer. Enter a positive integer: 1729 The sum of the digits is 19. skip simulation

Loop-and-a-Half Pattern while (true) { computation necessary to make the test if (test for completion) break; computation for the rest of the loop cycle 25

Repeat-Until-Sentinel Revisited while (true) { computation prompt user and necessary read in to a make valuethe test if (test (value for completion) == sentinel) break; computation rest of loop body for the rest of the loop cycle 26

for Statement for ( init ; test ; step ) { statements to be repeated Java evaluates a for statement by executing the following steps: 1. Evaluate init, which typically declares a control variable. 2. Evaluate test and exit from the loop if the value is false. 3. Execute the statements in the body of the loop. 4. Evaluate step, which usually updates the control variable. 5. Return to step 2 tobegin the next loop cycle.

for for ( init ; test ; step ) { statements to be repeated init; while ( test ) { statements to be repeated step; 28

Exercise for (int i = 1; i <= 10; i++) for (int i = 0; i < N; i++) for (int n = 99; n >= 1; n -= 2) for (int x = 1; x <= 1024; x *= 2) 29

Countdown public void run() { for ( int t = 10 ; t >= 0 ; t-- ) { println(t); println("liftoff!"); t 9876543210 1 10 9 8 7 6 5 4 3 2 1 0 Liftoff! 30 skip simulation

Nested for for (int i = 0; i < N_ROWS; i++) { for (int j = 0; j < N_COLUMNS; j++) { Display the square at row i and column j. 32

Checkerboard public void run() { double sqsize = (double) getheight() / N_ROWS; for (int i = 0; i < N_ROWS; i++) { for (int j = 0; j < N_COLUMNS; j++) { double x = j * sqsize; double y = i * sqsize; GRect sq = new GRect(x, y, sqsize, sqsize); sq.setfilled((i + j) % 2!= 0); add(sq); sqsize i j x y 30.0 01 8 01 2 8 30.0 60.0 210.0 210.0 Execute these inner statements loop six seven more times to complete the checkerboard. row. sq 33 skip simulation

Exercise: Triangle Number Table 1 = 1 1 + 2 = 3 1 + 2 + 3 = 6 1 + 2 + 3 + 4 = 10 1 + 2 + 3 + 4 + 5 = 15 1 + 2 + 3 + 4 + 5 + 6 = 21 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 = 36 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 = 45 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 = 55 34

Design Issues: Triangle Number Table As you think about the design of the TriangleTable program, it will help to keep the following thoughts in mind: The program involves two nested loops. The outer loop runs through each of the values of N from 1 to the maximum; the inner loop prints a series of values on each output line. The individual elements of each output line are easier to display if you call print instead of println. The print method is similar to println but doesn t return the cursor position to the beginning of the next line in the way that println does. Using print therefore makes it possible to string several output values together on the same line. The n th output line contains n values before the equal sign but only n 1 plus signs. Your program therefore cannot print a plus sign on each cycle of the inner loop but must instead skip one cycle.

TriangleTable public class TriangleTable extends ConsoleProgram { public void run() { for (int n = 1; n <= MAX_VALUE; n++) { int total = 0; for (int i = 1; i <= n; i++) { if (i > 1) print(" + "); print(i); total += i; println(" = " + total); /* Private constants */ private static final int MAX_VALUE = 10; 36

Simple Graphical Animation for (int i = 0; i < N_STEPS; i++) { update the graphical objects by a small amount pause(pause_time); 37

AnimatedSquare public void run() { GRect square = new GRect(0, 0, SQUARE_SIZE, SQUARE_SIZE); square.setfilled(true); square.setfillcolor(color.red); add(square); double dx = (getwidth() - SQUARE_SIZE) / N_STEPS; double dy = (getheight() - SQUARE_SIZE) / N_STEPS; for (int i = 0; i < N_STEPS; i++) { square.move(dx, dy); pause(pause_time); i dx dy square 101 3.0 1.7 AnimatedSquare 38 skip simulation

Summary Compound statements (blocks) provide structure and scoping Java control statements include if/else, switch, while, for Common Idioms are Repeat N-Times, Repeat-Until-Sentinel, and Loop-and-a-Half 39