Relational and Logical Operators

Slides:



Advertisements
Similar presentations
CMSC 104, Version 9/011 The while Looping Structure Topics The while Loop Program Versatility o Sentinel Values and Priming Reads Checking User Input Using.
Advertisements

Slide 1 Summary Two basic concepts: variables and assignments Some C++ practical issues: division rule, operator precedence  Sequential structure of a.
Conditions What if?. Flow of Control The order of statement execution is called the flow of control Unless specified otherwise, the order of statement.
true (any other value but zero) false (zero) expression Statement 2
ECE122 L7: Conditional Statements February 20, 2007 ECE 122 Engineering Problem Solving with Java Lecture 7 Conditional Statements.
1 CS150 Introduction to Computer Science 1 Relational Operators and the If Statement 9/22/08.
Boolean Expressions and If Flow of Control / Conditional Statements The if Statement Logical Operators The else Clause Block statements Nested if statements.
Chapter 5 Conditionals and Loops. © 2004 Pearson Addison-Wesley. All rights reserved2/33 Conditionals and Loops Now we will examine programming statements.
Spring 2005, Gülcihan Özdemir Dağ Lecture 3, Page 1 BIL104E: Introduction to Scientific and Engineering Computing, Spring Lecture 3 Outline 3.1 Introduction.
Lecture 4 C Program Control Acknowledgment The notes are adapted from those provided by Deitel & Associates, Inc. and Pearson Education Inc.
CMSC 104, Version 8/061L11Relational&LogicalOps.ppt Relational and Logical Operators Topics Relational Operators and Expressions The if Statement The if-else.
Programming in Java (COP 2250) Lecture 11 Chengyong Yang Fall, 2005.
1 Lecture 5: Selection Structures. Outline 2  Control Structures  Conditions  Relational Operators  Logical Operators  if statements  Two-Alternatives.
Exam 2 – Nov 18th Room ACIV 008. Project 2 Update  Your code needs to use loops to create the multiplication table. Hint: use nested for loop (Lecture.
Rational Expressions and selection structures Relational operators Logical operators Selection structures.
Instructor: Alexander Stoytchev CprE 185: Intro to Problem Solving (using C)
Lecture 2 Control Structure. Relational Operators -- From the previous lecture Relational Operator Meaning == is equal to < is less than > is greater.
Flow of Control Unless indicated otherwise, the order of statement execution through a method is linear: one after the other in the order they are written.
CMSC 104, Version 9/011 Relational and Logical Operators Topics Relational Operators and Expressions The if Statement The if-else Statement Nesting of.
Programming Language C++ Lecture 3. Control Structures  C++ provides control structures that serve to specify what has to be done to perform our program.
Dr. Sajib Datta Jan 23,  A precedence for each operator ◦ Multiplication and division have a higher precedence than addition and subtraction.
Making Decisions in c. 1.if statement Imagine that you could translate a statement such as “If it is not raining, then I will go swimming” into the C.
Instructor: Alexander Stoytchev CprE 185: Intro to Problem Solving (using C)
C Program Control September 15, OBJECTIVES The essentials of counter-controlled repetition. To use the for and do...while repetition statements.
Dr. Sajib Datta Sep 3,  A new operator used in C is modulus operator: %  % only used for integers, not floating-point  Gives the integer.
CNG 140 C Programming (Lecture set 3)
UMBC CMSC 104 – Section 01, Fall 2016
- Standard C Statements
Control Statements: Part 1
Operator Precedence Operators Precedence Parentheses () unary
CSC113: Computer Programming (Theory = 03, Lab = 01)
Boolean Expressions and If
Chapter 3 Control Statements Lecturer: Mrs Rohani Hassan
Topics The if Statement The if-else Statement Comparing Strings
Boolean Expressions & the ‘if’ Statement
Programming Fundamentals
JavaScript: Control Statements I
2008/10/22: Lecture 12 CMSC 104, Section 0101 John Y. Park
The C “switch” Statement
Relational & Logical Operators
The while Looping Structure
2008/10/27: Lecture 13 CMSC 104, Section 0101 John Y. Park
The C “switch” Statement
Topics The if Statement The if-else Statement Comparing Strings
Arithmetic Operators in C
Relational and Logical Operators
2008/10/22: Lecture 12 CMSC 104, Section 0101 John Y. Park
Structured Program
Relational and Logical Operators
Arithmetic Operators in C
The switch Statement Topics Multiple Selection switch Statement
3 Control Statements:.
The while Looping Structure
Relational & Logical Operators, if and switch Statements
2008/10/27: Lecture 13 CMSC 104, Section 0101 John Y. Park
Logic of an if statement
Chapter 4: Boolean Expressions, Making Decisions, and Disk Input and Output Prof. Salim Arfaoui.
Relational and Logical Operators
More Loops Topics Relational Operators Logical Operators for Loops.
Relational and Logical Operators
CprE 185: Intro to Problem Solving (using C)
Dale Roberts, Lecturer IUPUI
Conditionals and Loops
The while Looping Structure
Relational and Logical Operators
The while Looping Structure
Lecture 9: Implementing Complex Logic
CprE 185: Intro to Problem Solving (using C)
Presentation transcript:

Relational and Logical Operators 2008/10/15: Lecture 10 CMSC 104, Section 0101 John Y. Park [Based on dblock spr’06lecture, slightly modified]

Relational and Logical Operators Topics Relational Operators and Expressions The if Statement The if-else Statement Nesting of if-else Statements Logical Operators and Expressions Truth Tables Reading Sections 2.6, 4.10, 4.11

Relational Operators Relational expressions evaluate to the integer < less than > greater than <= less than or equal to >= greater than or equal to == is equal to != is not equal to Relational expressions evaluate to the integer values 1 (true) or 0 (false). All of these operators are called binary operators because they take two expressions as operands.

Practice with Relational Expressions int a = 1, b = 2, c = 3 ; Expression Value Expression Value a < c a + b >= c b <= c a + b == c c <= a a != b a > b a + b != c b >= c

Arithmetic Expressions: True or False Arithmetic expressions evaluate to numeric values. An arithmetic expression that has a value of zero is false. An arithmetic expression that has a value other than zero is true.

Practice with Arithmetic Expressions int a = 1, b = 2, c = 3 ; float x = 3.33, y = 6.66 ; Expression Numeric Value True/False a + b b - 2 * a c - b - a c - a y - x y - 2 * x

Review: Structured Programming All programs can be written in terms of only three control structures The sequence structure Unless otherwise directed, the statements are executed in the order in which they are written. The selection structure Used to choose among alternative courses of action. The repetition structure Allows an action to be repeated while some condition remains true.

Selection: the if statement if ( condition ) { statement(s) /* body of the if statement */ } The braces are not required if the body contains only a single statement. However, they are a good idea and are required by the 104 C Coding Standards.

Examples if ( age >= 18 ) { printf(“ Go Vote!\n”) ; } if ( value == 0 ) { printf (“The value you entered was zero.\n”) ;

Good Programming Practice Always place braces around the body of an if statement. Advantages: Easier to read Will not forget to add the braces if you go back and add a second statement to the body Less likely to make a semantic error Indent the body of the if statement 3 to 4 spaces -- be consistent!

Selection: the if-else statement if ( condition ) { statement(s) /* the if clause */ } else { statement(s) /* the else clause */ } Note that there is no condition for the else.

Example if ( age >= 18 ) { printf(“Go Vote!\n”) ; } else { printf(“Maybe next time!\n”) ; }

Another Example if ( value == 0 ) { printf (“The value you entered was zero.\n”) ; } else { printf (“Value = %d.\n”, value) ; }

Good Programming Practice Always place braces around the bodies of the if and else clauses of an if-else statement. Advantages: Easier to read Will not forget to add the braces if you go back and add a second statement to the clause Less likely to make a semantic error Indent the bodies of the if and else clauses 3 to 4 spaces -- be consistent!

Nesting of if-else Statements if ( condition1 ) { statement(s) } else if ( condition2 ) { } . . . /* more else if clauses may be here */ } else { statement(s) /* the default case */

Nesting of if-else Statements if (x == 1) { statement(s) } else if (x == 2) { } else if (x == 3) { } else { } if (x == 1) { statement(s) } else if (x == 2) { if (x == 3) { } else { }

Example if ( value == 0 ) { printf (“The value you entered was zero.\n”) ; } else if ( value < 0 ) { printf (“%d is negative.\n”, value) ; } else { printf (“%d is positive.\n”, value) ; }

Gotcha! = versus == int a = 2 ; if ( a = 1 ) { /* semantic (logic) error! */ printf (“a is one\n”) ; } else if ( a == 2 ) { printf (“a is two\n”) ; } else { printf (“a is %d\n”, a) ; }

Gotcha (con’t) The statement if (a = 1) is syntactically correct, so no error message will be produced. (Some compilers will produce a warning.) However, a semantic (logic) error will occur. An assignment expression has a value -- the value being assigned. In this case the value being assigned is 1, which is true. If the value being assigned was 0, then the expression would evaluate to 0, which is false. This is a VERY common error. So, if your if-else structure always executes the same, look for this typographical error.

Logical Operators So far we have seen only simple conditions. if ( count > 10 ) . . . Sometimes we need to test multiple conditions in order to make a decision. Logical operators are used for combining simple conditions to make complex conditions. && is AND if ( x > 5 && y < 6 ) || is OR if ( z == 0 || x > 10 ) ! is NOT if (! (bob > 42) )

Example Use of && if ( age < 1 && gender == ‘f’) { printf (“You have a baby girl!\n”) ; }

Truth Table for && Expression1 Expression2 Expression1 && Expression2 0 0 0 0 nonzero 0 nonzero 0 0 nonzero nonzero 1 Exp1 && Exp2 && … && Expn will evaluate to 1 (true) only if ALL subconditions are true.

Example Use of || if (grade == ‘D’ || grade == ‘F’) { printf (“See you next semester!\n”) ; }

Truth Table for || Expression1 Expression2 Expression1 || Expression2 0 0 0 0 nonzero 1 nonzero 0 1 nonzero nonzero 1 Exp1 && Exp2 && … && Expn will evaluate to 1 (true) if only ONE subcondition is true.

Example Use of ! if ( ! (x == 2) ) { /* same as (x != 2) */ printf(“x is not equal to 2.\n”) ; } else { printf(“x is equal to 2.\n”); }

Truth Table for ! Expression ! Expression 0 1 nonzero 0

Operator Precedence and Associativity Precedence Associativity ( ) left to right/inside-out * / % left to right + (addition) - (subtraction) left to right < <= > >= left to right == != left to right && left to right || left to right = right to left

Some Practice Expressions int a = 1, b = 0, c = 7; Expression Numeric Value True/False a b c a + b a && b a || b !c !!c a && !b a < b && b < c a > b && b < c a >= b || b > c

More Practice Given int a = 5, b = 7, c = 17 ; evaluate each expression as True or False. 1. c / b == 2 2. c % b <= a % b 3. b + c / a != c - a 4. (b < c) && (c == 7) 5. (c + 1 - b == 0) || (b = 5)