CS 106 Introduction to Computer Science I 09 / 25 / 2006 Instructor: Michael Eckmann.

Slides:



Advertisements
Similar presentations
1 Chapter Five Selection and Repetition. 2 Objectives How to make decisions using the if statement How to make decisions using the if-else statement How.
Advertisements

CS 206 Introduction to Computer Science II 03 / 04 / 2009 Instructor: Michael Eckmann.
Loops (Part 1) Computer Science Erwin High School Fall 2014.
CS 106 Introduction to Computer Science I 02 / 18 / 2008 Instructor: Michael Eckmann.
CS 330 Programming Languages 10 / 14 / 2008 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 11 / 09 / 2007 Instructor: Michael Eckmann.
Computer Science 1620 Loops.
CS 106 Introduction to Computer Science I 02 / 04 / 2008 Instructor: Michael Eckmann.
The UNIVERSITY of NORTH CAROLINA at CHAPEL HILL Adrian Ilie COMP 14 Introduction to Programming Adrian Ilie July 5, 2005.
Introduction to Computers and Programming Lecture 6 Professor: Evan Korth New York University.
Introduction to Computers and Programming Lecture 9: For Loops New York University.
CS 106 Introduction to Computer Science I 01 / 30 / 2008 Instructor: Michael Eckmann.
5-1 Flow of Control Recitation-01/25/2008  CS 180  Department of Computer Science  Purdue University.
CS 330 Programming Languages 10 / 11 / 2007 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 09 / 14 / 2007 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 02 / 12 / 2007 Instructor: Michael Eckmann.
Logical Operators Java provides two binary logical operators (&& and ||) that are used to combine boolean expressions. Java also provides one unary (!)
CS 106 Introduction to Computer Science I 02 / 11 / 2008 Instructor: Michael Eckmann.
Loops – While, Do, For Repetition Statements Introduction to Arrays
CS 106 Introduction to Computer Science I 10 / 04 / 2006 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 03 / 30 / 2007 Instructor: Michael Eckmann.
CS 330 Programming Languages 09 / 30 / 2008 Instructor: Michael Eckmann.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
COMP 14 Introduction to Programming Miguel A. Otaduy May 20, 2004.
Loops Repetition Statements. Repetition statements allow us to execute a statement multiple times Often they are referred to as loops Like conditional.
© 2004 Pearson Addison-Wesley. All rights reserved5-1 Iterations/ Loops The while Statement Other Repetition Statements.
Chapter 4 Making Decisions
CS 106 Introduction to Computer Science I 09 / 18 / 2006 Instructor: Michael Eckmann.
Lecture Review (If-else Statement) if-else statement has the following syntax: if ( condition ) { statement1; } else { statement2; } The condition.
CS 106 Introduction to Computer Science I 09 / 28 / 2007 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 10 / 16 / 2006 Instructor: Michael Eckmann.
COMP 110 Introduction to Programming Mr. Joshua Stough September 24, 2007.
CONTROL STATEMENTS Lakhbir Singh(Lect.IT) S.R.S.G.P.C.G. Ludhiana.
Section 3 - Selection and Repetition Constructs. Control Structures 1. Sequence 2. Selection 3. Repetition.
The switch Statement, DecimalFormat, and Introduction to Looping
CIS3931 – Intro to JAVA Lecture Note Set 3 19-May-05.
Lecture 10 Instructor: Craig Duckett. Assignment 2 Revision TONIGHT DUE TONIGHT Wednesday, August 5 th Assignment 3 NEXT DUE NEXT Monday, August 10 th.
Week 5 - Wednesday.  What did we talk about last time?  Exam 1!  And before that?  Review!  And before that?  if and switch statements.
Programming Fundamentals. Today’s lecture Decisions If else …… Switch Conditional Operators Logical Operators.
Selection (if-then-else) Programming Has 3 Types of Control: Sequential (normal): Control of Execution Proceeds One after the Other Selection (if-then-else):
CIS 234: Control Structures - Selection Dr. Ralph D. Westfall April, 2010.
1 Relational Expressions Relational expressions: –Expressions that compare operands –Sometimes called conditions –Evaluated to yield a result –Typically.
5-1 Repetition Statements Repetition statements allow us to execute a statement multiple times Often they are referred to as loops Like conditional statements,
CS 330 Programming Languages 10 / 07 / 2008 Instructor: Michael Eckmann.
CPS120: Introduction to Computer Science Decision Making in Programs.
Chapter 3- Flow Control. Overview n Why flow control n Branches vs. Loops n Branch statements n Loop Statements n Complex loops n Boolean variables n.
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Selection Statements Selection Switch Conditional.
Chapter 5: Structured Programming
Week 3 - Wednesday.  What did we talk about last time?  Other C features  sizeof, const  ASCII table  printf() format strings  Bitwise operations.
Lecture 2 Conditional Statement. chcslonline.org Conditional Statements in PHP Conditional Statements are used for decision making. Different actions.
Quiz 3 is due Friday September 18 th Lab 6 is going to be lab practical hursSept_10/exampleLabFinal/
Chapter 5 Conditionals and Loops. © 2004 Pearson Addison-Wesley. All rights reserved5-2 The switch Statement The switch statement provides another way.
CS 106 Introduction to Computer Science I 09 / 26 / 2007 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 02 / 01 / 2008 Instructor: Michael Eckmann.
Think Possibility 1 Iterative Constructs ITERATION / LOOPS C provides three loop structures: the for-loop, the while-loop, and the do-while-loop. Each.
BOOLEAN OPERATIONS AND CONDITIONALS CHAPTER 20 1.
Repetition Intro to Computer Science CS1510 Dr. Sarah Diesburg.
CS 106 Introduction to Computer Science I 09 / 10 / 2007 Instructor: Michael Eckmann.
Chapter 2: Fundamental Programming Structures in Java Adapted from MIT AITI Slides Control Structures.
Instructor: Alexander Stoytchev CprE 185: Intro to Problem Solving (using C)
1 Flow of Control Chapter 5. 2 Objectives You will be able to: Use the Java "if" statement to control flow of control within your program.  Use the Java.
Copyright © 2014 by John Wiley & Sons. All rights reserved.1 Decisions and Iterations.
CS 330 Programming Languages 09 / 30 / 2008 Instructor: Michael Eckmann.
Instructor: Alexander Stoytchev CprE 185: Intro to Problem Solving (using C)
Selection (if-then-else) Programming Has 3 Types of Control: Sequential (normal): Control of Execution Proceeds One after the Other Selection (if-then-else):
CS 106 Introduction to Computer Science I 02 / 15 / 2008 Instructor: Michael Eckmann.
Discussion 4 eecs 183 Hannah Westra.
The switch Statement, and Introduction to Looping
JavaScript: Control Statements.
Presentation transcript:

CS 106 Introduction to Computer Science I 09 / 25 / 2006 Instructor: Michael Eckmann

Michael Eckmann - Skidmore College - CS Fall 2006 Today’s Topics Comments and/or Questions? discussion of a few problems from lab logical operators switch statments while loops

Michael Eckmann - Skidmore College - CS Fall 2006 Lab discussion if (input_str.equals(“male”) { // do stuff for male } else if (input_str.equals(“female”) { // do stuff for female } else { // error } // what would happen if the first else was // removed?

Michael Eckmann - Skidmore College - CS Fall 2006 Lab discussion rating = rat_string.charAt(0); if (rating == 'a') { // rating is excellent } else if (rating == 'b') { // rating is good } else if (rating == 'c') { // rating is poor } else { // error } // what if we did it without the 1 st 2 elses ? rating = rat_string.charAt(0); if (rating == 'a') { // rating is excellent } if (rating == 'b') { // rating is good } if (rating == 'c') { // rating is poor } else { // error }

Michael Eckmann - Skidmore College - CS Fall 2006 Lab discussion a. y = y + 1; // (rewrite this in 3 other different ways) y++; ++y; y += 1; b. salary *= 2.5; salary = salary * 2.5; c. if (!(y != 5)) if (y == 5) d. --x; x = x – 1; e. if (lateSubmission == true) if (lateSubmission) f. z = 10 % 3; z = 1;

Michael Eckmann - Skidmore College - CS Fall 2006 Lab discussion a. int x=5; double y; y = x * 3; // everything is fine with this b. double d=4.5; int e; e = d; // change last line to e = (int) d; // the value of e will be 4, but there will be no syntax error c. int a=6, b=7; double c; c = a/b; // change last line to c = (double) a / b;

Michael Eckmann - Skidmore College - CS Fall 2006 Lab discussion As for the last problem, we have a requirement that we must use exactly 3 if/elses and they cannot be nested. Also, no logical operators are allowed. These requirements force us to only be able to make 3 comparisons, each between only two ints. Let me walk us through my solution.

Logical operators Not ! And & or && Or | or || The double ones (&& and ||) are “short circuit” operators --- if left operand is sufficient to determine truth or falsity, then the right operand is not evaluated. The single ones (& and |) always evaluate both operands. This really only matters if you have side-effects, e.g. Like a ++ or -- Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators Precedence first !, then && then ||. Parentheses are still performed first. Should be used to force the order that the programmer desires. Not operator, !, takes one operand to its right. And operator, &&, works on two operands Or operator, ||, works on two operands Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators NOT: !true = false, !false = true AND: true && true = true true && false = false false && true = false false && false = false Michael Eckmann - Skidmore College - CS Fall 2006 OR: true || true = true true || false = true false || true = true false || false = false

Logical operators Examples: boolean end_of_file = false; //... if (! end_of_file) //... if (!(age >=21)) //... Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if (!(age >=21)) //... // how else might we write the above? if ((age = 65)) // get a discount at the movies... if (you_are_rich && you_are_good_looking) System.out.println(“You got it made.”); // what types must you_are_rich and you_are_good_looking, be? Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if ((age >=21) && (++count > 10)) //... here if age is not >= 21 then regardless of what's on the right hand side of the &&, the whole thing will be false (because false AND anything = false), because && is the “short circuit” format of the AND operator, (++count > 10) will not be evaluated. if ((age >=21) & (++count > 10)) //... here, even if age is not >= 21 the right hand side WILL be evaluated What's the difference in the result? Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators && (short circuit AND) vs. & (non-short circuit AND) if ((age >=21) && (++count > 10)) //... if ((age >=21) & (++count > 10)) //... The difference is, that 1 will be added to count (and compared to 10) regardless of whether or not age is >= 21 in the second if, but in the first if, 1 will be added to count (and compared to 10) only if age is indeed >=21. Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if ((height >= 72) || (countPeople() <= 100)) //... here if height is >= 72, then the whole condition is guaranteed to be true (because true OR anything = true) and the || causes the right hand side NOT to be evaluated. Therefore, the method countPeople() would not be called if ((height >= 72) | (countPeople() <= 100)) //... here even if height is >=72, the righthand side WILL be evaluated because of the use of the non-short circuit OR |. Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators || (short circuit OR) vs. | (non-short circuit OR) if ((height >= 72) || (countPeople() <= 100)) //... if ((height >= 72) | (countPeople() <= 100)) //... The difference is, that countPeople() method will ALWAYS be called in the second if but won't be called in the first if if the left hand side (height >= 72) evaluates to true Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if ((height >= 72) || (countPeople() <= 100)) //... Would countPeople() be called (and it's returned value compared to 100) if height happens to be < 72? Why or why not? Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if ((height >= 72) || (countPeople() <= 100)) //... Would countPeople() be called (and it's returned value compared to 100) if height happens to be < 72? Why or why not? Yes it would because the LHS being false doesn't determine the outcome of the whole condition, even though we are using the || short-cicuit version of OR. Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if ((age >=21) && (++count > 10)) //... Would ++count > 10 occur if age is >= 21? Why or why not? Michael Eckmann - Skidmore College - CS Fall 2006

Logical operators if ((age >=21) && (++count > 10)) //... Would ++count > 10 occur if age is >= 21? Why or why not? Yes it would because the LHS being true doesn't determine the outcome of the whole condition, even though we are using the && short-cicuit version of AND. Michael Eckmann - Skidmore College - CS Fall 2006

Switch switch (some_var) { case 1: // do stuff if some_var's value is 1 break; case 2: // do stuff if some_var's value is 2 break; default: // do stuff if none of the cases executed. } Michael Eckmann - Skidmore College - CS Fall 2006

Switch break; // this statement exits out of the curly braces in which is it enclosed and program continues after the } let's write some code showing an example use of switch to emulate a menu like, 1. print *'s 2. print $'s print !'s Michael Eckmann - Skidmore College - CS Fall 2006

Switch Important comments about switch. The value in the switch is compared in order to the cases. If it is unequal to a case, it gets compared to the case below it and so on. Until it gets to an equal case, then the code within that case is executed and if there is no break, the code in lower cases continues to be executed until a break statement or the }. BE CAREFUL about putting break; statements in. Unless you're trying to do something fancy, they should be used at the end of each case. If the value in the switch doesn't equal any of the cases, the optional default case executes. Michael Eckmann - Skidmore College - CS Fall 2006

while loops While loops are used to repeat lines of code until some condition is met. e.g. while (condition) { // statements to do while condition is true. } condition is evaluated and if true the code within the curly braces executes. Then condition is tested again and if true the code within the curly braces executes. This continues until the condition is false (or a break; statement is hit.) Michael Eckmann - Skidmore College - CS Fall 2006

while loops It's extremely important for you to know exactly what code is executed in what order for you to be able to follow what a program is doing. Let's follow the code below line by line in order. (assume that it is inside a main method of a class.) int x = 1; System.out.println(“Just before the loop”); while (x < 4) { System.out.print(“*”); x++; } System.out.println(“\nJust got out of the loop”); Michael Eckmann - Skidmore College - CS Fall 2006

while loops int total = 0; while (total < 100) { total = total + 10; System.out.println(“total = “ + total); } System.out.println(“finished printing totals”); // What would this code do? Michael Eckmann - Skidmore College - CS Fall 2006

while loops Sentinel controlled loops vs. counter controlled loops. Counter controlled loops are those loops that usually execute a set number of times every time. A sentinel is a value that is used to terminate a loop. For instance, if you wanted a user to enter in some numbers (but you didn't know how many s/he was going to enter) to be averaged (and assuming that they are all supposed to be positive) we can ask the user to enter in -1 after s/he enters all the numbers so we know s/he's finished. Let's see an example. Michael Eckmann - Skidmore College - CS Fall 2006

while loops int input_num=0, count = 0; double total = 0.0; while (input_num != -1) { input_str = JOptionPane(“Enter a number to be averaged”); input_num = Integer.parseInt(input_str); total += input_num; count++; } System.out.println(“average = “ + (total / count)); // any problems with this code???? Hint: yes there's a logic error. Michael Eckmann - Skidmore College - CS Fall 2006

while loops Sentinel controlled loops vs. counter controlled loops. Counter controlled loops are those loops that usually execute a set number of times every time. As a programmer what value makes sense to choose as the sentinel is specific to the situation. Could anyone characterize what would be a bad value to choose as the sentinel? Michael Eckmann - Skidmore College - CS Fall 2006

while loops Order of execution of a while loop. First the condition is tested. –If it is true the statements within the curly braces execute –Then condition is tested again –If it is true the statements within the curly braces execute again –Then condition is tested again –... –This continues until the condition is false when tested. At that time, program control continues with the code after the right curly brace. Note: It IS possible that even on the first test of the condition, that it may be false. If it is, the statements within the loop don't execute at all. Michael Eckmann - Skidmore College - CS Fall 2006

while loops What happens to loops that do not alter the value of a variable in the condition? Michael Eckmann - Skidmore College - CS Fall 2006

while loops What happens to loops that do not alter the value of variable(s) in the condition? If that condition is true the first time, it will stay true forever and we will have an infinite loop. e.g. int x = 2; while (x > 0) { System.out.println(“x = “ + x); } Michael Eckmann - Skidmore College - CS Fall 2006

while loops Any other ways to get an infinite loop? Michael Eckmann - Skidmore College - CS Fall 2006

while loops Would this be infinite? int x = 2; while (x > 0) { System.out.println(“x = “ + x); x++; } Michael Eckmann - Skidmore College - CS Fall 2006