1 / 36

University of Washington Computer Programming I

University of Washington Computer Programming I Lecture 6: Conditionals © 2000 UW CSE Overview Concepts this lecture Conditional execution if statement Conditional expressions Relational and logical operators {Compound statements} Related Reading Read Sections 4.1-4.5, 4.7-4.9

Gabriel
Download Presentation

University of Washington Computer Programming I

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. University of WashingtonComputer Programming I • Lecture 6: • Conditionals © 2000 UW CSE

  2. Overview • Concepts this lecture • Conditional execution • if statement • Conditional expressions • Relational and logical operators • {Compound statements}

  3. Related Reading • Read Sections 4.1-4.5, 4.7-4.9 • 4.1: Control structure preview • 4.2: Relational and logical operators • 4.3: if statements • 4.4: Compound statements • 4.5: Example • 4.7: Nested if statements

  4. Control Flow “Control flow” is the order in which statements are executed Until now, control flow has been sequential -- the next statement executed is the next one that appears, in order, in the C program

  5. Conditional Control Flow choosing which of two (or more) statements to execute before continuing choosing whether or not to to skip a statement before continuing

  6. Conditional Execution A conditional statement allows the computer to choose an execution path depending on the value of a variable or expression if the withdrawal is more than the bank balance, then print an error iftoday is my birthday, then add one to my age if using whole milk, add two eggs, otherwise add three eggs

  7. Conditional ("if ") Statement The statement is executed if and only if the condition is true. • if (condition) statement; if (withdrawalAmount > balance) printf( “Not enough money\n”); if (temperature > 98.6) printf(“You have a fever.\n”); if (x < 100)x = x + 1;

  8. Conditional Flow Chart if (x < 100) x = x + 1 ; y = y + 1; yes x = x + 1 ; x < 100 ? no y = y + 1;

  9. Conditions • In parentheses is a condition, also called a “logical” or “Boolean” expression • Made up of variables, constants, arithmetic expressions, and the relational operators • Math symbols: < , , >,  , = ,  • in C: < ,<=, > , >= , == , !=

  10. Conditional Expressions • air_temperature > 80.0 • 98.6 <= body_temperature • marital_status == ‘M’ • divisor != 0 • Such expressions are used in “if” statements and numerous other places in C.

  11. Value of Conditional Expressions • What is the value of a conditional expression?? • Answer: we think of it as TRUEor FALSE

  12. Value of Conditional Expressions • What is the value of a conditional expression?? • Answer: we think of it as TRUEor FALSE • Under the hood in C, it's really an integer • FALSE is 0 (and 0 is FALSE) • TRUE is any value other than 0 (and non-zero is TRUE) • 1 is the result of a true relational operator • (e.g., 4 < 7 evaluates to 1)

  13. Complex Conditionals ifI have at least $15 or you have at least $15, then we can go to the movies ifthe temperature is below 32 degrees and it’s raining, then it’s snowing ifit’s not the case that it’s Saturday or Sunday, then it’s a work day

  14. Complex Conditionals in C We use Boolean operators to code complex conditionals in C. We’ll say lots more about this later! For now, here is some information for reference. Boolean operators && || ! and or not #define TRUE 1 #define FALSE 0 if (myMoney>=15.0||yourMoney>=15.0) canGoToMovies = TRUE;

  15. Multiple Actions • What if there’s more than one conditional action? • “If your temperature is high, then you have a fever and should take two aspirin and go to bed and call in sick tomorrow”

  16. Compound Statement • Groups together statements so that they are treated as a single statement: • { • statement1 ; • statement2 ; • ... • } • Also called a "block." • Highly useful • Not just in conditionals, but many places in C

  17. Using a Compound Statement • if ( temperature > 98.6 ){ • printf ( “You have a fever. \n” ); • aspirin = aspirin  2 ; • printf (“Go to bed/n”); • printf (“Sleep in tomorrow/n”); • }

  18. Combining and Substituting Statements • You may use a compound statement anywhere that a single statement may be used • Anywhere that a statement is allowed in C, any kind of statement can be used • A compound statement can contain any number of statements (including 0) • Among other things, these principles imply that compound statements can be nested to any depth

  19. Another Compound Example • Cash machine program fragment: • if (balance >= withdrawal){ • balance = balance – withdrawal; • dispense_funds(withdrawal); • } • What if () omitted? • What if {} omitted?

  20. if (x >= 0) abs = x; if ( x < 0 ) abs = -x; Finding Absolute Value (1) • Problem: Compute the absolute value |x| of x and put the answer in variable abs. Here are three solutions, all correct:

  21. if (x >= 0) abs = x; if ( x < 0 ) abs = -x; Finding Absolute Value (2) • Problem: Compute the absolute value |x| of x and put the answer in variable abs. Here are three solutions, all correct: abs = x; if ( x < 0 ) abs = -x;

  22. if (x >= 0) abs = x; if ( x < 0 ) abs = -x; Finding Absolute Value (3) • Problem: Compute the absolute value |x| of x and put the answer in variable abs. Here are three solutions, all correct: abs = x; if ( x < 0 ) abs = -x; if (x >= 0) abs = x; else abs = -x;

  23. if - else • Print error message only if the condition is false: • if ( balance >= withdrawal ) { • balance = balance - withdrawal ; • dispense_funds ( withdrawal ) ; • } • else{ • printf ( “Insufficient Funds! \n ” ) ; • } no ;here

  24. if-else Control Flow yes no balance >= withdrawal balance = balance - withdrawal ; dispense_funds ( withdrawal ) ; printf ( “No money! \n ” ) ; /* arrive here whether condition is TRUE or FALSE */

  25. Nested if Statements • #define BILL_SIZE 20 • if ( balance >= withdrawal ) { • balance = balance - withdrawal ; • dispense_funds ( withdrawal ) ; • } else { • if ( balance >= BILL_SIZE ) • printf ( “Try a smaller amount. \n ” ) ; • else printf ( “Go away! \n ” ) ; • }

  26. Nested ifs , Part II • if ( x == 5 ) { • if ( y == 5 ) printf ( “Both are 5. \n ”) ; • else printf ( “x is 5, but y is not. \n ”) ; • } else { • if ( y == 5 ) printf ( “y is 5, but x is not. \n ”) ; • else printf ( “Neither is 5. \n ”) ; • }

  27. Tax Table Example • Problem: Print the % tax based on income: tax income < 15,000 0% 15,000, < 30,000 18% 30,000, < 50,000 22% 28% 50,000, < 100,000 31% 100,000

  28. Direct Solution • if ( income < 15000 ) { • printf( “No tax.” ); • } • if ( income >= 15000 && income < 30000 ) { • printf(“18%% tax.”); • } • if ( income >= 30000 && income < 50000 ) { • printf(“22%% tax.”); • } • if ( income >= 50000 && income < 100000 ) { • printf(“28%% tax.”); • } • if ( income >=100000) { • printf(“31%% tax.”); • } Mutually exclusive conditions - only one will be true

  29. Cascaded ifs • if ( income < 15000 ) { if ( income < 15000 ) { • printf( “No tax” ); printf( “No tax” ); • } else { } else if ( income < 30000 ) { • if ( income < 30000 ) { printf( “18%% tax.” ); • printf( “18%% tax.” ); } else if ( income < 50000 ) { • } else { printf( “ 22%% tax.” ); • if ( income < 50000 ) { } else if ( income < 100000 ) { • printf( “ 22%% tax.” ); printf( “28%% tax.” ); • } else { } else • if ( income < 100000 ) { printf( “31%% tax.” ); • printf( “28%% tax.” ); } • } else { • printf( “31%% tax.” ); • } • } • } • } • Order is important. Conditions are evaluated in order given.

  30. Warning: Danger Ahead The idea of conditional execution is natural , intuitive, and highly useful However... Programs can get convoluted and hard to understand There are syntactic pitfalls to avoid

  31. Pitfalls of if, Part I if ( x = 10) { printf( “x is 10 ” ) ; } Bug! = is used instead of == This is not a syntax error, so the program can execute

  32. The World’s Last C Bug status = check_radar ( ) ; if (status = 1) { launch_missiles ( ) ;}

  33. Pitfalls of if, Part II • No: if ( 0 <= x <= 10 ) { • printf ( “x is between 0 and 10. \n ” ) ; • } • Yes: if ( 0 <= x && x <= 10 ) { • printf ( “x is between 0 and 10. \n ” ) ; • }

  34. Pitfalls of if, Part III • & is different from && • | is different from || • & and | are not used in this class • If used by mistake, no syntax error, but program may operate incorrectly

  35. Pitfalls of if, Part IV • Beware == and != with doubles: • double x ; • x = 30.0 * (1.0 / 3.0) ; • if ( x == 10.0 ) …

  36. Next Time • We’ll be discussing functions, a major topic of the course • Many students find it intellectually challenging compared to the previous material • Please join me then!

More Related