Sei sulla pagina 1di 110

SCK1213 Programming Technique I SEM1 2009/2010

Week 7
Making Decisions
Source from Tony Gaddis, Barret Krupnow, Starting out with C++, 5th edition update. 2007. Pearson Addison-Wesley

Selection structure Selection will be chosen based on conditions In C, there are 3 ways for selection structure:
1. Selection using if & else
if, expanding if, if/else, if/else if, trailing else, nested if

2. Selection using conditional operators 3. Selection using switch, case & break

4.1
Relational Operators & Logical Operators

Relational Operators

Used to compare numbers to determine relative order Operators:

Logical Operators Used to create relational expressions from other relational expressions Operators, meaning, and explanation:
&& || AND OR New relational expression is true if both expressions are true New relational expression is true if either expression is true Reverses the value of an expression true expression becomes false, and false becomes true

NOT

Logical data
Also called Boolean In C, there is no True or False Value. A Zero value is treated as False A Non-Zero value is treated as True

True and False in arithmetic scale

Logical operators truth table

Relational expression T/F examples

4.2
The if Statement

The if Statement Allows statements to be conditionally executed or skipped over Models the way we mentally evaluate situations:
"If it is raining, take an umbrella." "If it is cold outside, wear a coat."

Flowchart for Evaluating a Decision

Flowchart for Evaluating a Decision

The if Statement General Format:


if (expression) statement;

if statement what happens To evaluate:


if (expression) statement;

If the expression is true, then statement is executed. If the expression is false, then statement is skipped.

if statement - example

if statement notes

Do not place ; after (expression) Place statement; on a separate line after (expression), indented:
if (score > 90) grade = 'A';

Be careful testing float and double for equality 0 is false; any other value is true

Flowchart if

Flowchart if with example


Printing a number only if it is smaller than 0

Exercise Week 7_1 Refer to Lab 7, Exe 2 No. 1 (i) in pg. 60. Explain and draw the flowchart

4.3
Flags

Flags Variable that signals a condition Usually implemented as a bool variable As with other variables in functions, must be assigned an initial value before it is used

Exercise Week 7_2


Trace the following programs if the input is 22 and 68
int main() { float mark; bool pass=false; //this condition does not yet exist printf ("Enter your mark"); scanf ("%f", &mark); if (mark >=30) pass=true; if (pass) printf ("You pass the test\n"); if (!pass) printf ("You fail the test\n"); printf ("Program end"); getch(); return 0; }

4.4
Expanding the if Statement

Expanding the if Statement


To execute more than one statement as part of an if statement, enclose them in { }:
if (score > 90) { grade = 'A'; cout << "Good Job!\n"; }

{ } creates a block of code, or also known as compound statements

Expanding the if Statement - example

Exercise Week 7_3 (Solve the problem)


Identify the logic errors, and correct them
The program will display Pass message, calculate the carry mark and display the carry mark if the student pass the test. If the student fail the test the program will display Fail message and display a message to instruct the student to re-sit the test
int main() { double mark, final20p = 0; printf ("Enter your mark: "); scanf ("%lf", &mark); if (mark >= 30) printf ("TEST 1 -> Pass\n"); final20p = ((20.0/100.0) * mark); printf ("Contribution to final mark %ld", final20p); if (mark < 30) printf ("TEST 1 -> Fail\n"); printf ("Please re-sit TEST 1\n"); getch(); return 0; }

4.5
The if/else Statement

The if/else Statement

Provides two possible paths of execution Performs one statement or block if the expression is true, otherwise performs another statement or block.

The if/else Statement General Format:


if (expression) statement1; else statement2;
// or block // or block

if/else what happens


To evaluate:
if (expression) statement1; else statement2;

If the expression is true, then statement1 is executed and statement2 is skipped. If the expression is false, then statement1 is skipped and statement2 is executed.

if/else statement example if statement example


IF score is higher than 50 THEN grade is PASS ELSE grade is FAIL

In C, this corresponds to if statement with three parts:

if statement example condition Part 1: the condition an expression that is evaluated to TRUE or FALSE

if statement TRUE Part 2: the TRUE-part a block of statements that are executed if the condition evaluates to TRUE

else statement FALSE Part 3: the FALSE-part a block of statements that are executed if the condition evaluates to FALSE

If the condition evaluates to FALSE, the TRUE-part is skipped

Flowchart if/else

if/else statement notes


If the TRUE-part (or FALSE-part) consists of only one statement, then the curly braces may be omitted E.g. these two statements are equivalent:

Flowchart 2 - if/else
Example: if two numbers (p and q) are equivalent, reset them to zero, otherwise, exchange or swap their value and then print the new values.

The three forms of if statements


The condition is always in parentheses All TRUE-parts and all FALSEparts are a single statement of a block of code / compound statements

Exercise Week 7_4 Refer back to Lab 7, Exe 2, No. 1, pg. 60. Solve the problem in (ii) and (iii) pg.61

4.6
The if/else if Statement

The if/else if Statement Chain of if statements that test in order until one is found to be true Also models thought processes:
If it is raining, take an umbrella, else, if it is windy, take a hat, else, take sunglasses

if/else if format
if (expression) statement1; // or block else if (expression) statement2; // or block . . // other else ifs . else if (expression) statementn; // or block

if/else if format example program 7-12


//This program uses an if/else if statement to assign a //letter grade (A, B, C, D, or F) to a numeric test score. #include <stdio.h> #include <conio.h> int main() { int testScore; //To hold a numeric test score char grade; //To hold a letter grade //Get the numeric test score printf ("Enter your numeric test score and I will\n"); printf ("tell you the letter grade you earned: "); scanf ("%d", &testScore); //Determine the letter grade if (testScore < 60) grade = 'F'; else if (testScore < 70) grade = 'D'; else if (testScore < 80) grade = 'C'; else if (testScore < 90) grade = 'B';

(Program Continues )

if/else if format - example


else if (testScore <= 100) grade = 'A'; //Display the letter grade printf ("Your grade is %c ", grade, ".\n"); getch(); return 0; }

Exercise Week 7_5 Refer to Lab 7, Exe 3, No. 1 in pg. 62. Draw a flowchart for Program 7.3 Refer to Lab 7, Exe 3, No. 2 in pg. 62-63. Draw a flowchart for Program 7.4

Discuss the differences.

4.7
Using a Trailing else

Using a Trailing else

Used with if/else if statement when none of the expressions are true
Provides default statement/action Used to catch invalid values, other exceptional situations

From Program 7-12


if (testScore < 60) grade = 'F'; else if (testScore < 70) grade = 'D'; else if (testScore < 80) grade = 'C'; else if (testScore < 90) grade = 'B'; else if (testScore <= 100) grade = 'A'; else printf ("We do not give scores higher than 100.\n");

Flowchart with trailing else

Flowchart with trailing else


Example: identifying the grade of a score

4.8
Menus

Menus

Menu-driven program: program execution controlled by user selecting from a list of actions Menu: list of choices on the screen Menus can be implemented using if/else if statements

Menu-driven program organization

Display list of numbered or lettered choices for actions Prompt user to make selection Test user selection in expression
if a match, then execute code for action if not, then go on to next expression

Exercise Week 7_6 Refer to Lab 7, Exe. 4, No. 1, Program 7.5. in pg. 63. Use if / else.if to select the menu Use trailing else to print We dont have any Jump to switch slide #93

4.9
Nested if Statements

Nested if Statements An if statement that is part of the if or else part of another if statement Can be used to evaluate more than one condition:
if (score < 100) { if (score > 90) grade = 'A'; } or,
condition1 condition2

condition3 TRUE-part,

Nested if Statements Problem-solving example Write a program to calculate and display an area of a rectangle. Size of each side is given by a user from a keyboard. Your program must ensure that the size of each side is not zero or negative. If side is zero, display a warning message to the user and turn the area into zero. If the side given is negative, only take the magnitude.

Nested if Statements Problem-solving example


i) Problem analysis Input media: keyboard data: width and length Output: media: screen data: area of a rectangle Process: 1. To find magnitude of a number: if number is negative, magnitude = -(number) if number is positive, magnitude = number 2. Area of a rectangle = width x length

Nested if Statements Problem-solving example


ii) Pseudo-code 1. Read width & length from user 2. if width = 0 or length = 0, then 2.1 begin 2.1.1 print warning message 2.1.2 area = 0 2.2 end_if 3. else 3.1 begin 3.1.1 if negative length then 3.1.1.1 length = magnitude length 3.1.2 end_if

3.1.3 if negative width, then 3.1.3.1 width = magnitude width 3.1.4 end_if 3.1.5 area = length * width 3.2 end_else 4. print area

Nested if Statements Problem-solving example


iii) C program
#include <stdio.h> main () { float area, length, width; printf (Enter length and width\n); scanf (%f %f, &length, &width); if (length == 0 || width == 0) { printf (WARNING- INPUT CANNOT BE ZERO); area = 0; } else { if (length < 0) length = -length; //find magnitude length if (width < 0) width =-width; //find width magnitude area = length * width } printf (Area of a rectangle is %f\n);, area); }

2-tier nested if

Nested if Statements multiple tiers Defense Ministry is to list names of male staffs whose age is between 20-26 and not yet married
if (gender == M) if (marital_status == S) if (age <= 26) if (age >= 20) printf (%s\n, name);

Notes on coding nested ifs An else matches the nearest if that does not have an else:
if (score < 100) if (score > 90) grade = 'A'; else ...// goes with second if, // not first one

Proper indentation helps greatly

Exercise Week 7_7 Write nested if statements that perform the following test: If amount1 is greater than 10 and amount2 is less than 100, display the greater of the two.

4.10
Logical Operators

Logical operators Used to create relational expressions from other relational expressions Operators, meaning, and explanation:
&& || AND OR New relational expression is true if both expressions are true New relational expression is true if either expression is true Reverses the value of an expression true expression becomes false, and false becomes true

NOT

Using relational expressions for logical comparison Examples:

Relational operators pair in logical expressions

Revisited - Nested if Statements multiple tiers


The statement can also be written as:
if (gender == L) && (marital_status == S) && (age <= 26) && (age >= 20) printf(%s\n, name);

Logical Operators - notes


! has highest precedence, followed by &&, then || If the value of an expression can be determined by evaluating just the subexpression on left side of a logical operator, then the sub-expression on the right side will not be evaluated (short circuit evaluation)
!(x > 2) !x > 2

4.11
Checking Numeric Ranges with Logical Operators

Checking Numeric Ranges with Logical Operators


Used to test to see if a value falls inside a range:
if (grade >= 0 && grade <= 100) cout << "Valid grade";

Can also test to see if value falls outside of range:


if (grade < 0 || grade > 100) cout << "Invalid grade";

Cannot use mathematical notation:


if (0 <= grade <= 100) //doesnt work!

4.12
Validating User Input

Validating User Input Input validation: inspecting input data to determine whether it is acceptable Bad output will be produced from bad input Can perform various tests:
Range Reasonableness Valid menu choice Divide by zero

From Program 7-12


//Get the numeric test score printf ("Enter your numeric test score and I will\n"); printf ("tell you the letter grade you earned: "); scanf ("%d", &testScore); if (testScore < 0 || testScore > 100) //Input validation { //An invalid score was entered printf ("%d is invalid score.\n", testScore); printf ("Run the program again and enter a value\n"); printf ("in the range of 0 to 100.\n"); } else { //Determine the letter grade if (testScore < 60) grade = 'F'; else if (testScore < 70) grade = 'D'; else if (testScore < 80) grade = 'C'; else if (testScore < 90) grade = 'B'; else if (testScore <= 100) grade = 'A'; //Display the letter grade printf ("Your grade is %c ", grade, ".\n"); }

4.13
More About Variable Definitions and Scope

More About Variable Definitions and Scope Scope of a variable is the block in which it is defined, from the point of definition to the end of the block Usually defined at beginning of function May be defined close to first use

Still More About Variable Definitions and Scope

Variables defined inside { } have local or block scope When inside a block within another block, can define variables with the same name as in the outer block.
When in inner block, outer definition is not available Not a good idea

Exercise Week 7_8 What will the following program display if user enter test1 40 and test2 30?
int main () { int test1; printf ("Enter Test 1 score: "); scanf ("%d", &test1); int test2; printf ("Enter Test 2 score: "); scanf ("%d", &test2); int sum=test1+test2; printf ("Sum: %d \n", sum); if (sum>60){ int bonus=10; test1+=bonus; test2+=bonus; int sum=test1+test2; printf ("Test 1 with bonus: %d \n", test1); printf ("Test 2 with bonus: %d \n", test2); printf ("Sum with bonus: %d \n", sum); } printf ("Test 1 : %d \n", test1); printf ("Test 2 : %d \n", test2); printf ("Sum: %d \n", sum); getch(); return 0; }

(cont. next)

4.14
Comparing Strings

Comparing Strings You cannot use relational operators with C-strings Must use the strcmp function to compare C-strings strcmp compares the ASCII codes of the characters in the C-strings. Comparison is character-by-character

Comparing Strings The expression strcmp(str1, str2)

compares the strings str1 and str2


It returns 0 if the strings are the same It returns a negative number if str1 < str2 It returns a positive number if str1 > str2

Comparing strings - example

strcmp(Newyork,Newyork) will return zero because 2 strings are equal.


strcmp(their,there) will return a 9 which is the numeric difference between ASCII i and ASCII r.

strcmp(The, the)
will return 32 which is the numeric difference between ASCII T & ASCII t.

Comparing Strings - example


//This program correctly tests two C-strings for equality //with the strcmp fuction. #include <stdio.h> #include <conio.h> #include <string.h> int main () { const int SIZE = 40; char firstString[SIZE], secondString[SIZE]; //Get two strings printf ("Enter a string: "); gets(firstString); printf ("Enter another string: "); gets(secondString); //Compare them with strcmp if (strcmp(firstString, secondString) == 0) printf ("You entered the same string twice.\n"); else printf ("The strings are not the same.\n"); getch(); return 0; }

Comparing Strings - example

Exercise Week 7_9 Refer back to Lab 7, Exe. 4, Program 7.5 in pg. 63. Change the program that you wrote in Exercise Week 7_6 :
Change variable choice to variable iceCream[20] Instead of using menu, use gets so the user can enter the flavor and use strcmp to if / elseif statement.

4.15
The Conditional Operator

The Conditional Operator

Can use to create short if/else statements Format: expr ? expr : expr;
x<0 ? y=10 : z=20;

First Expression: Expression to be tested

2nd Expression: Executes if first expression is true

3rd Expression: Executes if the first expression is false

The Conditional Operator The value of a conditional expression is


The value of the second expression if the first expression is true The value of the third expression if the first expression is false

Parentheses () may be needed in an expression due to precedence of conditional operator

The Conditional Operator Condition operator vs if/else statements


if (x<0) y=10; else z=20; if (x>100) a=0; else a=1; if (score<60) printf(Your grade is FAIL); else printf(Your grade is PASS);

(x<0)?(y=10):(z=20);

a=x>100?0:1;

printf(Your grade is ); printf((score<60)? FAIL: Pass);

The Conditional Operator - example


#include <stdio.h> #include <conio.h> int main(){ const double PAY_RATE = 50.0; double hours, charges;

printf ("How many hours were worked? "); scanf ("%lf", &hours); hours = hours < 5 ? 5 : hours; //conditional operator charges = PAY_RATE * hours; printf ("The charges are $%.2lf", charges); getch(); return 0;
}

Exercise Week 7_10


Rewrite the following if/else statements as conditional expressions
if (x>y) z = 1; else z = 20; if (hours> 40) wages *= 1.5; else wages *= 1; if (result >= 0) printf("The result is +ve); else printf("The result is -ve);

Rewrite the following conditional expressions as if/else statements


j = k > 90 ? 57 : 12; total += count == 1 ? sales : count * sales; printf (((num % 2) == 0) ? "Even\n" : "Odd\n");

4.16
The switch Statement

The switch Statement Used to select among statements from several alternatives In some cases, can be used instead of if/else if statements

switch statement format


switch (expression) //integer or char { case exp1: statement1; case exp2: statement2; ... case expn: statementn; default: statementn+1; }

Conversion from if/else if to switch

switch statement requirements

1) expression must be an integer variable or an expression that evaluates to an integer value 2) exp1 through expn must be constant integer expressions or literals, and must be unique in the switch statement 3) default is optional but recommended

switch statement how it works

1) expression is evaluated 2) The value of expression is compared against exp1 through expn. 3) If expression matches value expi, the program branches to the statement following expi and continues to the end of the switch
4) If no matching value is found, the program branches to the statement after default:

switch statement example I

switch statement example II

switch statement example III

break statement

Used to exit a switch statement


If it is left out, the program "falls through" the remaining statements in the switch statement

break statement - example

Flowchart - switch

Flowchart switch example


Printing the description of a grade

Using switch with a menu switch statement is a natural choice for menu-driven program:
display the menu then, get the user's menu selection use user input as expression in switch statement use menu choices as expr in case statements

Exercise Week 7_11 Change Program 7.5 in pg. 63 to :


Input 1=> Output :Muhammads favorite Ismaels favorite Input 3=> Output :Adibahs favorite Munirahs favorite Input 2 => Output :Ismaels favorite Input 4 => Output :Munirahs favorite

Back to slide #54

4.17
Testing for File Open Errors

Testing for File Open Errors


To ensure there is no error in opening a file Example: opening and reading a file stor12.dat
#include <stdio.h> main() { FILE *failptr; failptr = fopen(stor12.dat, r); if (failptr == NULL) { printf(Error in opening the file.\n); exit(-1); //Program ends) } return 0; }

Exercise Week 7_12 Refer to Lab 6, Exe.2. Program 6.3 in pg. 58. Modify the program to detect if the open files operation failed.

Thank You
Q&A

Potrebbero piacerti anche