Chapter 4. Conditionals and recursion. 4.1 The modulus operator. 4.2 Conditional execution

Similar documents
LAB 2. Objective: Navin Sridhar D 8 54

Chapter 4: Conditionals and Recursion

Chapter 7. Iteration. 7.1 Multiple assignment

COMP-202: Foundations of Programming. Lecture 6: Conditionals Jackie Cheung, Winter 2016

Building Java Programs

Building Java Programs

Building Java Programs Chapter 2

Warmup : Name that tune!

Text Input and Conditionals

Building Java Programs Chapter 2. bug. Primitive Data and Definite Loops. Copyright (c) Pearson All rights reserved. Software Flaw.

Building Java Programs Chapter 2

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

School of Computer Science CPS109 Course Notes 5 Alexander Ferworn Updated Fall 15

Repetition, Looping. While Loop

Control Structures in Java if-else and switch

Iteration. # a and b are now equal # a and b are no longer equal Multiple assignment

Conditionals and Recursion. Python Part 4

COMP-202: Foundations of Programming. Lecture 3: Boolean, Mathematical Expressions, and Flow Control Sandeep Manjanna, Summer 2015

Building Java Programs

The compiler is spewing error messages.

Python for Informatics

Expressions and Casting

Building Java Programs. Chapter 2: Primitive Data and Definite Loops

Repetition, Looping CS101

PRG PROGRAMMING ESSENTIALS. Lecture 2 Program flow, Conditionals, Loops

Intro. Scheme Basics. scm> 5 5. scm>

CS 112 Introduction to Programming

Admin. CS 112 Introduction to Programming. Recap: Java Static Methods. Recap: Decomposition Example. Recap: Static Method Example

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

Decisions, Decisions. Testing, testing C H A P T E R 7

1 Lexical Considerations

CSE115 / CSE503 Introduction to Computer Science I Dr. Carl Alphonce 343 Davis Hall Office hours:

DM550 / DM857 Introduction to Programming. Peter Schneider-Kamp

Intro to Programming. Unit 7. What is Programming? What is Programming? Intro to Programming

Expressions and Casting. Data Manipulation. Simple Program 11/5/2013

CS 1301 CS1 with Robots Summer 2007 Exam 1

Topic 4 Expressions and variables

Lecture 05: Methods. AITI Nigeria Summer 2012 University of Lagos.

Java Basic Programming Constructs

Java Tutorial. Saarland University. Ashkan Taslimi. Tutorial 3 September 6, 2011

COMP-202: Foundations of Programming. Lecture 2: Variables, and Data Types Sandeep Manjanna, Summer 2015

Repetition with for loops

Expressions & Flow Control

Building Java Programs

1 Truth. 2 Conditional Statements. Expressions That Can Evaluate to Boolean Values. Williams College Lecture 4 Brent Heeringa, Bill Jannen

Iteration. Chapter 7. Prof. Mauro Gaspari: Mauro Gaspari - University of Bologna -

Review of Basic Java

Primitive data, expressions, and variables

Lecture 3 (02/06, 02/08): Condition Statements Decision, Operations & Information Technologies Robert H. Smith School of Business Spring, 2017

Mirage. Language Reference Manual. Image drawn using Mirage 1.1. Columbia University COMS W4115 Programming Languages and Translators Fall 2006

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

Operators. Java operators are classified into three categories:

Scheme as implemented by Racket

Discover how to get up and running with the Java Development Environment and with the Eclipse IDE to create Java programs.

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

Intermediate Code Generation

Learning the Language - V

CS 112 Introduction to Programming

Control Structures in Java if-else and switch

Opening Problem. Find the sum of integers from 1 to 10, from 20 to 30, and from 35 to 45, respectively.

Lexical Considerations

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

COMP-202 Unit 2: Java Basics. CONTENTS: Using Expressions and Variables Types Strings Methods

SSEA Computer Science: Track A. Dr. Cynthia Lee Lecturer in Computer Science Stanford

Research Group. 2: More types, Methods, Conditionals

CIS133J. Working with Numbers in Java

DM503 Programming B. Peter Schneider-Kamp.

More Control Structures

More types, Methods, Conditionals. ARCS Lab.

APCS Semester #1 Final Exam Practice Problems

CONTENTS: Compilation Data and Expressions COMP 202. More on Chapter 2

Full file at

Notes - Recursion. A geeky definition of recursion is as follows: Recursion see Recursion.

What we will do today Explain and look at examples of. Programs that examine data. Data types. Topic 4. variables. expressions. assignment statements

Building Java Programs

Language Basics. /* The NUMBER GAME - User tries to guess a number between 1 and 10 */ /* Generate a random number between 1 and 10 */

The SPL Programming Language Reference Manual

Visual Programming. Lecture 2: More types, Methods, Conditionals

Outline. Parts 1 to 3 introduce and sketch out the ideas of OOP. Part 5 deals with these ideas in closer detail.

COMP 250: Java Programming I. Carlos G. Oliver, Jérôme Waldispühl January 17-18, 2018 Slides adapted from M. Blanchette

Opening Problem. Find the sum of integers from 1 to 10, from 20 to 30, and from 35 to 45, respectively.

CS 106 Introduction to Computer Science I

Computer Science II (20082) Week 1: Review and Inheritance

Repe$$on CSC 121 Spring 2017 Howard Rosenthal

Object-Oriented Programming

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

The PCAT Programming Language Reference Manual

CIS 110 Introduction To Computer Programming. February 29, 2012 Midterm

Introduction to Java Applications

1. Variables 2. Arithmetic 3. Input and output 4. Problem solving: first do it by hand 5. Strings 6. Chapter summary

Expressions and Data Types CSC 121 Spring 2015 Howard Rosenthal

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

INDEX. A SIMPLE JAVA PROGRAM Class Declaration The Main Line. The Line Contains Three Keywords The Output Line

Michele Van Dyne Museum 204B CSCI 136: Fundamentals of Computer Science II, Spring

CS212 Midterm. 1. Read the following code fragments and answer the questions.

Decisions in Java IF Statements

Chapter 3: Operators, Expressions and Type Conversion

Activity 4: Methods. Content Learning Objectives. Process Skill Goals

Building Java Programs

Lecture Notes CPSC 224 (Spring 2012) Today... Java basics. S. Bowers 1 of 8

Transcription:

Chapter 4 Conditionals and recursion 4.1 The modulus operator The modulus operator works on integers (and integer expressions) and yields the remainder when the first operand is divided by the second. In Java, the modulus operator is a percent sign, %. The syntax is the same as for other operators: int quotient = 7 / 3; int remainder = 7 % 3; The first operator, integer division, yields 2. The second operator yields 1. Thus, 7 divided by 3 is 2 with 1 left over. The modulus operator turns out to be surprisingly useful. For example, you can check whether one number is divisible by another: if x % y is zero, then x is divisible by y. Also, you can use the modulus operator to extract the rightmost digit or digits from a number. For example, x % 10 yields the rightmost digit of x (in base 10). Similarly x % 100 yields the last two digits. 4.2 Conditional execution To write useful programs, we almost always need to check conditions and change the behavior of the program accordingly. Conditional statements

40 Chapter 4. Conditionals and recursion give us this ability. The simplest form is the if statement: if (x > 0) { System.out.println("x is positive"); The expression in parentheses is called the condition. If it is true, then the statements in brackets get executed. If the condition is not true, nothing happens. The condition can contain any of the comparison operators, sometimes called relational operators: x == y x!= y x > y x < y x >= y x <= y // x equals y // x is not equal to y // x is greater than y // x is less than y // x is greater than or equal to y // x is less than or equal to y Although these operations are probably familiar to you, the syntax Java uses is a little different from mathematical symbols like =, and. A common error is to use a single = instead of a double ==. Remember that = is the assignment operator, and == is a comparison operator. Also, there is no such thing as =< or =>. The two sides of a condition operator have to be the same type. You can only compare ints to ints and doubles to doubles. The operators == and!= work with Strings, but they don t do what you expect. And the other relational operators don t do anything at all. We will see how to compare strings Section 8.10. 4.3 Alternative execution A second form of conditional execution is alternative execution, in which there are two possibilities, and the condition determines which one gets executed. The syntax looks like: if (x%2 == 0) { System.out.println("x is even");

4.4. Chained conditionals 41 else { System.out.println("x is odd"); If the remainder when x is divided by 2 is zero, then we know that x is even, and this code prints a message to that effect. If the condition is false, the second print statement is executed. Since the condition must be true or false, exactly one of the alternatives will be executed. As an aside, if you think you might want to check the parity (evenness or oddness) of numbers often, you might want to wrap this code up in a method, as follows: public static void printparity(int x) { if (x%2 == 0) { System.out.println("x is even"); else { System.out.println("x is odd"); Now you have a method named printparity that will print an appropriate message for any integer you care to provide. In main you would invoke this method like this: printparity(17); Always remember that when you invoke a method, you do not have to declare the types of the arguments you provide. Java can figure out what type they are. You should resist the temptation to write things like: int number = 17; printparity(int number); // WRONG!!! 4.4 Chained conditionals Sometimes you want to check for a number of related conditions and choose one of several actions. One way to do this is by chaining a series of ifs and elses: if (x > 0) { System.out.println("x is positive");

42 Chapter 4. Conditionals and recursion else if (x < 0) { System.out.println("x is negative"); else { System.out.println("x is zero"); These chains can be as long as you want, although they can be difficult to read if they get out of hand. One way to make them easier to read is to use standard indentation, as demonstrated in these examples. If you keep all the statements and squiggly-brackets lined up, you are less likely to make syntax errors and more likely to find them if you do. 4.5 Nested conditionals In addition to chaining, you can also nest one conditional within another. We could have written the previous example as: if (x == 0) { System.out.println("x is zero"); else { if (x > 0) { System.out.println("x is positive"); else { System.out.println("x is negative"); There is now an outer conditional that contains two branches. The first branch contains a simple print statement, but the second branch contains another conditional statement, which has two branches of its own. Those two branches are both print statements, but they could have been conditional statements as well. Indentation helps make the structure apparent, but nevertheless, nested conditionals get difficult to read very quickly. Avoid them when you can. On the other hand, this kind of nested structure is common, and we will see it again, so you better get used to it.

4.6. The return statement 43 4.6 The return statement The return statement allows you to terminate the execution of a method before you reach the end. One reason to use it is if you detect an error condition: public static void printlogarithm(double x) { if (x <= 0.0) { System.out.println("Positive numbers only, please."); return; double result = Math.log(x); System.out.println("The log of x is " + result); This defines a method named printlogarithm that takes a double named x as a parameter. It checks whether x is less than or equal to zero, in which case it prints an error message and then uses return to exit the method. The flow of execution immediately returns to the caller and the remaining lines of the method are not executed. I used a floating-point value on the right side of the condition because there is a floating-point variable on the left. 4.7 Type conversion You might wonder how you can get away with an expression like "The log of x is " + result, since one of the operands is a String and the other is a double. In this case Java is being smart on our behalf, automatically converting the double to a String before it does the string concatenation. Whenever you try to add two expressions, if one of them is a String, Java converts the other to a String and then perform string concatenation. What do you think happens if you perform an operation between an integer and a floating-point value?

44 Chapter 4. Conditionals and recursion 4.8 Recursion I mentioned in the last chapter that it is legal for one method to invoke another, and we have seen several examples. I neglected to mention that it is also legal for a method to invoke itself. It may not be obvious why that is a good thing, but it turns out to be one of the most magical and interesting things a program can do. For example, look at the following method: public static void countdown(int n) { if (n == 0) { System.out.println("Blastoff!"); else { System.out.println(n); countdown(n-1); The name of the method is countdown and it takes a single integer as a parameter. If the parameter is zero, it prints the word Blastoff. Otherwise, it prints the number and then invokes a method named countdown itself passing n-1 as an argument. What happens if we invoke this method, in main, like this: countdown(3); The execution of countdown begins with n=3, and since n is not zero, it prints the value 3, and then invokes itself... The execution of countdown begins with n=2, and since n is not zero, it prints the value 2, and then invokes itself... The execution of countdown begins with n=1, and since n is not zero, it prints the value 1, and then invokes itself... The execution of countdown begins with n=0, and since n is zero, it prints the word Blastoff! and then returns. The countdown that got n=1 returns.

4.8. Recursion 45 The countdown that got n=2 returns. The countdown that got n=3 returns. And then you re back in main. So the total output looks like: 3 2 1 Blastoff! As a second example, threeline. let s look again at the methods newline and public static void newline() { System.out.println(""); public static void threeline() { newline(); newline(); newline(); Although these work, they would not be much help if we wanted to print 2 newlines, or 106. A better alternative would be public static void nlines(int n) { if (n > 0) { System.out.println(""); nlines(n-1); This program similar to countdown; as long as n is greater than zero, it prints a newline and then invokes itself to print n-1 additional newlines. The total number of newlines that get printed is 1 +(n-1), which usually comes out to roughly n. When a method invokes itself, that s called recursion, and such methods are recursive.

46 Chapter 4. Conditionals and recursion 4.9 Stack diagrams for recursive methods In the previous chapter we used a stack diagram to represent the state of a program during a method invocation. The same kind of diagram can make it easier to interpret a recursive method. Remember that every time a method gets called it creates a new frame that contains a new version of the method s parameters and variables. The following figure is a stack diagram for countdown, called with n = 3: There is one frame for main and four frames for countdown, each with a different value for the parameter n. The bottom of the stack, countdown with n=0 is called the base case. It does not make a recursive call, so there are no more frames for countdown. The frame for main is empty because main does not have any parameters or variables. Exercise 4.1. Draw a stack diagram that shows the state of the program after main invokes nlines with the parameter n=4, just before the last invocation of nlines returns. 4.10 Glossary modulus: An operator that works on integers and yields the remainder when one number is divided by another. In Java it is denoted with a percent sign(%).

4.11. Exercises 47 conditional: A block of statements that may or may not be executed depending on some condition. chaining: A way of joining several conditional statements in sequence. nesting: Putting a conditional statement inside one or both branches of another conditional statement. coordinate: A variable or value that specifies a location in a twodimensional graphical window. pixel: The unit in which coordinates are measured. bounding box: A common way to specify the coordinates of a rectangular area. typecast: An operator that converts from one type to another. In Java it appears as a type name in parentheses, like (int). recursion: The process of invoking the same method you are currently executing. base case: A condition that causes a recursive method not to make a recursive call. 4.11 Exercises Exercise 4.2. This exercise reviews the flow of execution through a program with multiple methods. Read the following code and answer the questions below. public class Buzz { public static void baffle(string blimp) { System.out.println(blimp); zippo("ping", -5); public static void zippo(string quince, int flag) { if (flag < 0) {

48 Chapter 4. Conditionals and recursion System.out.println(quince + " zoop"); else { System.out.println("ik"); baffle(quince); System.out.println("boo-wa-ha-ha"); public static void main(string[] args) { zippo("rattle", 13); 1. Write the number 1 next to the first statement of this program that will be executed. Be careful to distinguish things that are statements from things that are not. 2. Write the number 2 next to the second statement, and so on until the end of the program. If a statement is executed more than once, it might end up with more than one number next to it. 3. What is the value of the parameter blimp when baffle gets invoked? 4. What is the output of this program? Exercise 4.3. The first verse of the song 99 Bottles of Beer is: 99 bottles of beer on the wall, 99 bottles of beer, ya take one down, ya pass it around, 98 bottles of beer on the wall. Subsequent verses are identical except that the number of bottles gets smaller by one in each verse, until the last verse: No bottles of beer on the wall, no bottles of beer, ya can t take one down, ya can t pass it around, cause there are no more bottles of beer on the wall! And then the song(finally) ends.

4.11. Exercises 49 Write a program that prints the entire lyrics of 99 Bottles of Beer. Your program should include a recursive method that does the hard part, but you might want to write additional methods to separate the major functions of the program. As you develop your code, test it with a small number of verses, like 3 Bottles of Beer. The purpose of this exercise is to take a problem and break it into smaller problems, and to solve the smaller problems by writing simple methods. Exercise 4.4. What is the output of the following program? public class Narf { public static void zoop(string fred, int bob) { System.out.println(fred); if (bob == 5) { ping("not "); else { System.out.println("!"); public static void main(string[] args) { int bizz = 5; int buzz = 2; zoop("just for", bizz); clink(2*buzz); public static void clink(int fork) { System.out.print("It's "); zoop("breakfast ", fork) ; public static void ping(string strangstrung) { System.out.println("any " + strangstrung + "more ");

50 Chapter 4. Conditionals and recursion Exercise 4.5. Fermat s Last Theorem says that there are no integers a, b, and c such that except in the case when n = 2. a n + b n = c n Write a method named checkfermat that takes four integers as parameters a, b, c and n and that checks to see if Fermat s theorem holds. If n is greater than 2 and it turns out to be true that a n + b n = c n, the program should print Holy smokes, Fermat was wrong! Otherwise the program should print No, that doesn t work. You should assume that there is a method named raisetopow that takes two integers as arguments and that raises the first argument to the power of the second. For example: int x = raisetopow(2, 3); would assign the value 8 to x, because 2 3 = 8.