14
Conditional and iterative statements Jordi Cortadella Department of Computer Science

Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

  • Upload
    others

  • View
    14

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Conditional and iterative statements

Jordi Cortadella

Department of Computer Science

Page 2: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Maximum of two numbers

• Write a program that reads two numbers and prints the maximum value of both.

• Example:

– The maximum of 20 and 38 is 38.

– The maximum of -3 and -8 is -3.

Introduction to Programming © Dept. CS, UPC 2

Page 3: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Maximum of two numbers

Conditionalstatement

#include <iostream>using namespace std;

// This program reads two numbers and// prints the maximum value of both

int main() {int x, y;cin >> x >> y;int m;if (x > y) m = x;else m = y;cout << "The maximum value is "

<< m << endl;}

Introduction to Programming © Dept. CS, UPC 3

Page 4: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Maximum of two numbers#include <iostream>using namespace std;

// This program reads two numbers and// prints the maximum value of both

int main() {int x, y;cin >> x >> y;int m;if (x > y) m = x;else m = y;cout << "The maximum value is "

<< m << endl;}

x y3 8

cin

m = x m = y

x > y?

true false

m 8

Introduction to Programming © Dept. CS, UPC 4

Page 5: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Maximum of two numbers (II)#include <iostream>using namespace std;

// This program reads two numbers and// prints the maximum value of both

int main() {int x, y;cin >> x >> y;cout << "The maximum value is ";if (x > y) cout << x;else cout << y;cout << endl;

}

Introduction to Programming © Dept. CS, UPC 5

Page 6: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Maximum of two numbers (III)#include <iostream>using namespace std;

// This program reads two numbers and// prints the maximum value of both

int main() {int x, y;cin >> x >> y;if (x < y) x = y;cout << x << endl;

}x = y

true false

x < y?

Introduction to Programming © Dept. CS, UPC 6

Page 7: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Repetitive statements

• Assume the following specification:

Input: reads a number n > 0Output: prints the sequence 1 2 3 … n

(one number per line)

• This specification suggests some algorithm with a repetitive procedure.

Introduction to Programming © Dept. CS, UPC 7

Page 8: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Print the numbers 1..N

> print_numbers

8

1

2

3

4

5

6

7

8

>Introduction to Programming © Dept. CS, UPC 8

Page 9: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Print the numbers 1…N

// Input: reads a number n > 0// Output: prints the numbers 1...n (one per line)

int main() {

int n;

cin >> n;

cout << 1 << endl;cout << 2 << endl;cout << 3 << endl;cout << 4 << endl;

cout << n << endl;

}

How many?

Introduction to Programming © Dept. CS, UPC 9

Page 10: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Print the numbers 1…N

// Input: reads a number n > 0// Output: prints the numbers 1...n (one per line)

int main() {

int n;

cin >> n;

int i = 1;

while (i <= n) {

cout << i << endl;

i = i + 1;

}

}

i i <= n Loop body

1 true cout << 1 << endl; i = 1 + 1;

2 true cout << 2 << endl; i = 2 + 1;

3 true cout << 3 << endl; i = 3 + 1;

4 true cout << 4 << endl; i = 4 + 1;

5 true cout << 5 << endl; i = 5 + 1;

6 false

5n

Introduction to Programming © Dept. CS, UPC 10

Page 11: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

The while statement

• Syntax:

while ( condition ) statement;

(the condition must return true or false)

• Semantics:– Similar to the repetition of an if statement

– The condition is evaluated:• If true, the statement is executed and the control returns to

the while statement again.

• If false, the while statement terminates.

Introduction to Programming © Dept. CS, UPC 11

Page 12: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Multiplication table• Write a program that reads a number n (between 1 and 9)

and prints the multiplication table of n:

• Example for n = 6:

6 x 1 = 66 x 2 = 126 x 3 = 186 x 4 = 246 x 5 = 306 x 6 = 366 x 7 = 426 x 8 = 486 x 9 = 54

Introduction to Programming © Dept. CS, UPC 12

Page 13: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

// Input: reads a number 0 < n < 10// Output: prints the multiplication table of n

int main() {int n;cin >> n;int i = 1;while (i <= 9) { // or also (i < 10)

// print n x i = nicout << n << " x " << i

<< " = " << ni << endl;i = i + 1;

}}

Multiplication table

Introduction to Programming © Dept. CS, UPC 13

Page 14: Conditional and iterative statements · 2015-09-08 · •Conditional statements (if-else) are used to take decisions that depend on values of variables. •The while statement is

Summary

• Conditional statements (if-else) are used to take decisions that depend on values of variables.

• The while statement is the fundamental instruction to iterate under a condition that determines termination.

• The control of conditional and loop statements is determined by Boolean expressions.

Introduction to Programming © Dept. CS, UPC 14