Chapter 3:Decision Structures

Slides:



Advertisements
Similar presentations
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Java: Early Objects Third Edition by Tony Gaddis Chapter.
Advertisements

Chapter 4 Control Structures I. Objectives ► Examine relational and logical operators ► Explore how to form and evaluate logical (Boolean) expressions.
Introduction to Computers and Programming Lecture 6 Professor: Evan Korth New York University.
5-1 Flow of Control Recitation-01/25/2008  CS 180  Department of Computer Science  Purdue University.
The if Statement The code in methods executes sequentially.
Logical Operators Java provides two binary logical operators (&& and ||) that are used to combine boolean expressions. Java also provides one unary (!)
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Java Software Solutions Foundations of Program Design Sixth Edition by Lewis.
Logical Operators and Conditional statements
Java Programming: From Problem Analysis to Program Design, 4e Chapter 4 Control Structures I: Selection.
Chapter 3: Decision Structures Starting Out with Java: From Control Structures through Objects Fifth Edition by Tony Gaddis.
C++ for Engineers and Scientists Third Edition
The switch Statement, DecimalFormat, and Introduction to Looping
© 2012 Pearson Education, Inc. All rights reserved. Chapter 3: Decision Structures Starting Out with Java: From Control Structures through Data Structures.
Chapter 3 Decision Structures 1. Contents 1.The if Statement 2.The if-else Statement 3.The if-else-if Statement 4.Nested if Statement 5.Logical Operators.
Lecture 3 Decision Structures. 4-2 Topics – The if Statement – The if - else Statement – The PayRoll class – Nested if Statements – The if - else - if.
Copyright © 2012 Pearson Education, Inc. Publishing as Pearson Addison-Wesley C H A P T E R 4 Decision Structures and Boolean Logic.
CONTROL STATEMENTS IF-ELSE, SWITCH- CASE Introduction to Computer Science I - COMP 1005, 1405 Instructor : Behnam Hajian
Decision Structures and Boolean Logic
Starting Out with Java: From Control Structures through Objects
1 Chapter 4: Selection Structures. In this chapter, you will learn about: – Selection criteria – The if-else statement – Nested if statements – The switch.
Chapter 3 Decision Structures Starting Out with Java: From Control Structures through Objects.
Chapter 3:Decision Structures.  3.1 The if Statement  3.2 The if-else Statement  3.3 The if-else-if Statement  3.4 Nested if Statements  3.5 Logical.
Flow of Control Part 1: Selection
Chapter 3:Decision Structures.  3.1 The if Statement  3.2 The if-else Statement  3.3 The if-else-if Statement  3.4 Nested if Statements  3.5 Logical.
Introduction to Programming Prof. Rommel Anthony Palomino Department of Computer Science and Information Technology Spring 2011.
Control Stuctures Module 4 Copyright © Copyright © Slide #2 Decision Structures Chapter Objectives To understand: how to write boolean expressions.
Liang, Introduction to C++ Programming, (c) 2007 Pearson Education, Inc. All rights reserved X1 Chapter 3 Control Statements.
Chapter 3: Decision Structures
CHAPTER 3 Decision Structures Copyright © 2016 Pearson Education, Inc., Hoboken NJ.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Java: From Control Structures through Objects Third Edition.
©2016 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. CSC INTRO TO COMPUTING - PROGRAMMING If Statement.
©2016 Pearson Education, Inc. Upper Saddle River, NJ. All Rights Reserved. CSC 110 – INTRO TO COMPUTING - PROGRAMMING Switch Statement.
Copyright © 2014 by John Wiley & Sons. All rights reserved.1 Decisions and Iterations.
C++ for Engineers and Scientists Second Edition Chapter 4 Selection Structures.
Control Structures- Decisions. Smart Computers Computer programs can be written to make computers seem smart Making computers smart is based on decision.
CHAPTER 3 Decision Structures Copyright © 2016 Pearson Education, Ltd.
CS0007: Introduction to Computer Programming
Java Programming Fifth Edition
INTERMEDIATE PROGRAMMING USING JAVA
Chapter 3 Control Statements
Chapter 3: Decision Structures by Tony Gaddis and Godfrey Muganda
Chapter 4: Control Structures I
Chapter 3: Decision Structures
The switch Statement, and Introduction to Looping
Control Structures Combine individual statements into a single logical unit with one entry point and one exit point. Used to regulate the flow of execution.
Chapter 4: Making Decisions.
CHAPTER 4 Selection CSEG1003 Introduction to Computing
Lecture 3- Decision Structures
EGR 2261 Unit 4 Control Structures I: Selection
Chapter 3 Control Statements Lecturer: Mrs Rohani Hassan
Topics The if Statement The if-else Statement Comparing Strings
Chapter 4: Making Decisions.
Lecture 3 MIT 12043, Fundamentals of Programming By: S. Sabraz Nawaz
Chapter 3: Decision Structures
if-else-if Statements
CS-0401 INTERMEDIATE PROGRAMMING USING JAVA
Chapter 3: Decision Structures
Chapter 4: Control Structures I
Topics The if Statement The if-else Statement Comparing Strings
Comparing Strings Strings can be compared using the == and != operators String comparisons are case sensitive Strings can be compared using >, =, and.
Topics The if Statement The if-else Statement Comparing Strings
The System.exit() Method
Boolean Expressions to Make Comparisons
PROGRAM FLOWCHART Selection Statements.
CprE 185: Intro to Problem Solving (using C)
Module 3 Selection Structures 6/25/2019 CSE 1321 Module 3.
Controlling Program Flow
Presentation transcript:

Chapter 3:Decision Structures Lecture 8: Monday Sept 25,2006

Chapter 3:Decision Structures 3.1 The if Statement 3.2 The if-else Statement 3.3 The if-else-if Statement  3.4 Nested if Statements  3.5 Logical Operators 3.6 Comparing String Objects 3.7 More About Variable Declaration and Scope 3.9 The switch Statement 3.10 Creating Objects with the DecimalFormat Class 3.12 Common Errors to Avoid

Nested if Statements If an if statement appears inside of another if statement (single or block) it is called a nested if statement. The nested if is only executed if the if statement it is in results in a true condition. Nested if statements can get very complex, very quickly.

LoanQualifier.java double salary, yearsOnJob; String input; input = JOptionPane.showInputDialog("Enter your " + "annual salary."); salary = Double.parseDouble(input); input = JOptionPane.showInputDialog("Enter the number of " +"years at your current job."); yearsOnJob = Double.parseDouble(input);

LoanQualifier.java if (salary >= 30000) { if (yearsOnJob >= 2) { JOptionPane.showMessageDialog(null, "You qualify " + "for the loan."); } else { JOptionPane.showMessageDialog(null, "You must have " + "been on your current job for at least " + "two years to qualify."); JOptionPane.showMessageDialog(null, "You must earn at” + “least $30,000 per year to qualify.");

Nested if Statement Flowcharts Wear a jacket. Yes Is it cold outside? Wear shorts. Is it snowing? Wear a parka. No

if-else Matching Curly brace use is not required if there is only one statement to be conditionally executed. However, sometimes curly braces can help make the program more readable. Additionally, proper indentation makes it much easier to match up else statements with their corresponding if statement.

if-else Matching if (employed == 'y') { This else if (recentGrad == 'y') System.out.println("You qualify for the special interest rate."); } else System.out.println("You must be a recent college graduate to qualify."); System.out.println("You must be employed to qualify."); This else matches with this if. This else matches with this if.

Nested if Statements If an if statement appears inside of another if statement (single or block) it is called a nested if statement. The nested if is only executed if the if statement it is in results in a true condition. Nested if statements can get very complex, very quickly.

LoanQualifier.java double salary, yearsOnJob; String input; input = JOptionPane.showInputDialog("Enter your " + "annual salary."); salary = Double.parseDouble(input); input = JOptionPane.showInputDialog("Enter the number of " +"years at your current job."); yearsOnJob = Double.parseDouble(input);

LoanQualifier.java if (salary >= 30000) { if (yearsOnJob >= 2) { JOptionPane.showMessageDialog(null, "You qualify " + "for the loan."); } else { JOptionPane.showMessageDialog(null, "You must have " + "been on your current job for at least " + "two years to qualify."); JOptionPane.showMessageDialog(null, "You must earn at” + “least $30,000 per year to qualify.");

Nested if Statement Flowcharts Wear a jacket. Yes Is it cold outside? Wear shorts. Is it snowing? Wear a parka. No

if-else Matching Curly brace use is not required if there is only one statement to be conditionally executed. However, sometimes curly braces can help make the program more readable. Additionally, proper indentation makes it much easier to match up else statements with their corresponding if statement.

if-else Matching if (employed == 'y') { This else if (recentGrad == 'y') System.out.println("You qualify for the special interest rate."); } else System.out.println("You must be a recent college graduate to qualify."); System.out.println("You must be employed to qualify."); This else matches with this if. This else matches with this if.

Logical Operators Java provides two binary logical operators (&& and ||) that are used to combine boolean expressions. Java also provides one unary (!) logical operator to reverse the truth of a boolean expression.

Logical Operators Operator Meaning Effect && AND Connects two boolean expressions into one. Both expressions must be true for the overall expression to be true. || OR Connects two boolean expressions into one. One or both expressions must be true for the overall expression to be true. It is only necessary for one to be true, and it does not matter which one. ! NOT The ! operator reverses the truth of a boolean expression. If it is applied to an expression that is true, the operator returns false. If it is applied to an expression that is false, the operator returns true.

The && Operator The logical AND operator (&&) takes two operands that must both be boolean expressions. The resulting combined expression is true iff (if and only if) both operands are true. Expression 1 Expression 2 Expression1 && Expression2 true false

LogicalAND double salary; // Annual salary double yearsOnJob; // Years at current job String input; // To hold string input input = JOptionPane.showInputDialog("Enter your " + "annual salary.") salary = Double.parseDouble(input); input = JOptionPane.showInputDialog( "Enter the number of " +"years at your current job."); yearsOnJob = Double.parseDouble(input);

LogicalAND // Determine whether the user qualifies for the loan. if (salary >= 30000 && yearsOnJob >= 2) { JOptionPane.showMessageDialog(null, "You qualify " + "for the loan."); } else JOptionPane.showMessageDialog(null, "You do not " + "qualify for the loan.");

The || Operator The logical OR operator (||) takes two operands that must both be boolean expressions. The resulting combined expression is false iff (if and only if) both operands are false. Expression 1 Expression 2 Expression1 || Expression2 true false

LogicalOR double salary; // Annual salary double yearsOnJob; // Years at current job String input; // To hold string input input = JOptionPane.showInputDialog("Enter your " + "annual salary.") salary = Double.parseDouble(input); input = JOptionPane.showInputDialog( "Enter the number of " +"years at your current job."); yearsOnJob = Double.parseDouble(input);

LogicalOR // Determine whether the user qualifies for the loan. if (salary >= 30000 || yearsOnJob >= 2) { JOptionPane.showMessageDialog(null, "You qualify " +"for the loan."); } else JOptionPane.showMessageDialog(null, "You do not " + "qualify for the loan.");

The ! Operator The ! operator performs a logical NOT operation. If an expression is true, !expression will be false. if (!(temperature > 100)) System.out.println(“Below the maximum temperature."); If temperature > 100 evaluates to false, then the output statement will be run. Expression 1 !Expression1 true false

Short Circuiting Logical AND and logical OR operations perform short-circuit evaluation of expressions. Logical AND will evaluate to false as soon as it sees that one of its operands is a false expression. Logical OR will evaluate to true as soon as it sees that one of its operands is a true expression.

Order of Precedence The ! operator has a higher order of precedence than the && and || operators. The && and || operators have a lower precedence than relational operators like < and >. Parenthesis can be used to force the precedence to be changed.

Order of Precedence Order of Precedence Operators Description 1 (unary negation) ! Unary negation, logical NOT 2 * / % Multiplication, Division, Modulus 3 + - Addition, Subtraction 4 < > <= >= Less-than, Greater-than, Less-than or equal to, Greater-than or equal to 5 == != Is equal to, Is not equal to 6 && Logical AND 7 || Logical NOT 8 = += -= *= /= %= Assignment and combined assignment operators.

Comparing String Objects In most cases, you cannot use the relational operators to compare two String objects. Reference variables contain the address of the object they represent. Unless the references point to the same object, the relational operators will not return true. StringCompareTo.java

StringCompare.java String name1 = "Mark", name2 = "Mark", name3 = "Mary"; // Compare "Mark" and "Mark" if (name1.equals(name2)) { System.out.println(name1 + " and " + name2 + " are the same."); } else " are the NOT the same.");

StringCompare.java // Compare "Mark" and "Mary" if (name1.equals(name3)) { System.out.println(name1 + " and " + name3 + " are the same."); } else " are the NOT the same.");

StringCompareTo.java String name1 = "Mary", name2 = "Mark"; // Compare "Mary" and "Mark" if (name1.compareTo(name2) < 0) { System.out.println(name1 + " is less than " + name2); } else if (name1.compareTo(name2) == 0) System.out.println(name1 + " is equal to " + name2); else if (name1.compareTo(name2) > 0) System.out.println(name1 + " is greater than " + name2);

Ignoring Case in String Comparisons In the String class the equals and compareTo methods are case sensitive. In order to compare two String objects that might have different case, use: equalsIgnoreCase, or compareToIgnoreCase

SecretWord.java if (input.equalsIgnoreCase("PROSPERO")) { System.out.println("Congratulations!” + “You know the“ + “ secret word!"); } else System.out.println("Sorry, that is NOT” “the " +"secret word!");

Variable Scope In Java, a local variable does not have to be declared at the beginning of the method. The scope of a local variable begins at the point it is declared and terminates at the end of the method. When a program enters a section of code where a variable has scope, that variable has come into scope, which means the variable is visible to the program. Example: VariableScope.java

The Conditional Operator The conditional operator is a ternary (three operand) operator. The conditional operator allows a programmer to write a simple if-else type statement. The format of the operators is: expression1 ? expression2 : expression3 The conditional operator can also return a value.

The Conditional Operator The conditional operator can be used as a shortened if-else statement: x > y ? z = 10 : z = 5; This line is functionally equivalent to: if(x > ) z = 10; else z = 5;

The Conditional Operator Many times, the conditional operator is used to supply a value. number = x > y ? 10 : 5; This is functionally equivalent to: if(x > y) number = 10; else number = 5; Example: ConsultantCharges.java

The switch Statement The if-else statements allow the programmer to make true / false branches. The switch statement allows the programmer to use an ordinal value to determine how a program will branch. The switch statement can evaluate an integer type or character type variable and make decisions based on the value.

The switch Statement The switch statement takes the form: switch (SwitchExpression) { case CaseExpression: // place one or more statements here break; // case statements may be repeated //as many times as necessary default: }

The switch Statement The switch statement takes an ordinal value (byte, short, int, long, char) as the SwitchExpression. switch (SwitchExpression) { … } The switch statement will evaluate the expression. If there is an associated case statement that matches that value, program execution will be transferred to that case statement.

The switch Statement Each case statement will have a corresponding CaseExpression that must be unique. case CaseExpression: // place one or more statements here break; If the SwitchExpression matches the CaseExpression, the Java statements between the colon and the break statement will be executed.

The switch Case The break statement ends the case statement. The break statement is optional. If a case does not contain a break, then program execution continues into the next case. Example: NoBreaks.java Example: PetFood.java The default case is optional and will be executed if no CaseExpression matches the SwitchExpression. Example: SwitchDemo.java