CS 106 Introduction to Computer Science I 09 / 26 / 2007 Instructor: Michael Eckmann.

Slides:



Advertisements
Similar presentations
AP Computer Science Anthony Keen. Computer 101 What happens when you turn a computer on? –BIOS tries to start a system loader –A system loader tries to.
Advertisements

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.
Week 5: Loops 1.  Repetition is the ability to do something over and over again  With repetition in the mix, we can solve practically any problem that.
CS 106 Introduction to Computer Science I 02 / 18 / 2008 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 09 / 25 / 2006 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 11 / 09 / 2007 Instructor: Michael Eckmann.
10-Jun-15 Just Enough Java. Variables A variable is a “box” that holds data Every variable has a name Examples: name, age, address, isMarried Variables.
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.
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.
© 2004 Pearson Addison-Wesley. All rights reserved5-1 Iterations/ Loops The while Statement Other Repetition Statements.
CS 106 Introduction to Computer Science I 09 / 18 / 2006 Instructor: Michael Eckmann.
CS 106 Introduction to Computer Science I 10 / 15 / 2007 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.
CS 206 Introduction to Computer Science II 10 / 28 / 2009 Instructor: Michael Eckmann.
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.
CONTROL STATEMENTS IF-ELSE, SWITCH- CASE Introduction to Computer Science I - COMP 1005, 1405 Instructor : Behnam Hajian
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.
More on Input Output Input Stream : A sequence of characters from an input device (like the keyboard) to the computer (the program running). Output Stream.
Selection (if-then-else) Programming Has 3 Types of Control: Sequential (normal): Control of Execution Proceeds One after the Other Selection (if-then-else):
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.
Control Structures II Repetition (Loops). Why Is Repetition Needed? How can you solve the following problem: What is the sum of all the numbers from 1.
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.
Logic Our programs will have to make decisions on what to do next –we refer to the decision making aspect as logic Logic goes beyond simple if and if-else.
Week 3 - Wednesday.  What did we talk about last time?  Other C features  sizeof, const  ASCII table  printf() format strings  Bitwise operations.
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.
Sections © Copyright by Pearson Education, Inc. All Rights Reserved.
1 CS161 Introduction to Computer Science Topic #8.
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.
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.
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.
CprE 185: Intro to Problem Solving (using C)
The switch Statement, and Introduction to Looping
JavaScript: Control Statements.
While loops The while loop executes the statement over and over as long as the boolean expression is true. The expression is evaluated first, so the statement.
Selection (if-then-else)
Presentation transcript:

CS 106 Introduction to Computer Science I 09 / 26 / 2007 Instructor: Michael Eckmann

Michael Eckmann - Skidmore College - CS Fall 2007 Today’s Topics Comments and/or Questions? lab problem solutions logical operators for boolean expressions switch / case while loops

Problem 6 lab 3 Create a program (named FindLargest) that asks the user for four integers. You are to determine the largest among the integers and print out all four and say which is largest. This can and should be done with exactly three if/else's (not nested) and without using and's &&, or's ||, and not's ! which we have barely started to cover. So what's allowed in the condition of an if for this problem? Michael Eckmann - Skidmore College - CS Fall 2007

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 2007

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 2007

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 2007 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 2007

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 2007

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 2007

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 2007

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 2007

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 evaluates to true Michael Eckmann - Skidmore College - CS Fall 2007

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 2007

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-circuit version of OR. Michael Eckmann - Skidmore College - CS Fall 2007

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 2007

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-circuit version of AND. Michael Eckmann - Skidmore College - CS Fall 2007

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 2007

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 2007

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 2007

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 2007

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 2007

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 2007

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 2007

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 2007

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 2007

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 2007

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

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 2007

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

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