SlideShare a Scribd company logo
ProgramStructures
Chapter 5
5
Branching
Allows different code to execute based
on a conditional test.
if, if-else, and switch statements
5
If, Else, and Else-If
if Statements
“If the sky is blue, I’ll ride my bike.”
else Statements
“If the sky is red, I’ll drive; else
(otherwise) I’ll ride my bike.”
Else-if Idioms
“If the sky is blue, I’ll ride my bike; else if
the sky is red, I’ll drive, else I’ll walk.”
5
Nested if Statements
if statements can be nested
(combined) within other if statements
to account for multiple conditions.
If the sky is blue
If there are clouds in the sky
Do something for blue sky, cloudy days
Else
Do something for blue sky, cloudless days
Else
Do something for non-blue sky days
5
The switch Statement
switch statements are an efficient
way to choose between multiple
options.
Easier to expand options than else-if
structures
Easier to read than multiple else-if
structures
Use the break keyword to prevent “falling
through” to next statement
5
Switch Evaluation
switch statements evaluate int values:
int x = 3;
switch(x)
{
1:
x += 2;
break;
2:
x *= 2;
break;
3:
x /= 2;
break;
}
5
Logical Operators
Combine or negate conditional tests
Logical AND (&&)
“The value of x is greater than 10 and the value of x is less
than 20”
(x > 10) && (x < 20);
Logical OR (||)
“The value of x is greater than 10 or the value of x is less
than 5”
(x > 10) || (x < 5);
Logical NOT (!)
“The value of x is not greater than 10”
! (x > 10);
5
Looping
What is iteration?
Iteration is a structure that repeats a
block of code a certain number of times,
or until a certain condition is met.
5
The while Loop
“As long as this condition is true,
execute this code”
while ( counter < 11)
{
counter++;
}
Might not execute if the condition is
already false
5
The for Loop
Includes (optional) arguments for:
An initialization variable
A conditional test
An action
for ( int counter = 1;
counter < 11; counter++ )
{
System.out.print(counter + “ ”)
}
5
The do...while Loop
“Take this action, while this is true”
int value = 10;
do
{
value = value + 2;
}
while ( value < 10 );
Ensures at least one execution of code

More Related Content

What's hot

Conditional statements in vb script
Conditional statements in vb scriptConditional statements in vb script
Conditional statements in vb script
Nilanjan Saha
 
Flow of control ppt
Flow of control pptFlow of control ppt
Vbscript
VbscriptVbscript
Vbscript
Deepthi Reddy
 
Control structures in c++
Control structures in c++Control structures in c++
Control structures in c++
Nitin Jawla
 
Conditional Loops Python
Conditional Loops PythonConditional Loops Python
Conditional Loops Python
primeteacher32
 
Jumping statements
Jumping statementsJumping statements
Jumping statements
Suneel Dogra
 
Program control statements in c#
Program control statements in c#Program control statements in c#
Program control statements in c#
Dr.Neeraj Kumar Pandey
 
Control flow statements in java
Control flow statements in javaControl flow statements in java
Control flow statements in java
yugandhar vadlamudi
 
Loops in java script
Loops in java scriptLoops in java script
Loops in java script
Ravi Bhadauria
 
Control statements
Control statementsControl statements
Control statements
Kanwalpreet Kaur
 
Decision making and looping
Decision making and loopingDecision making and looping
Decision making and looping
Hossain Md Shakhawat
 
Java Repetiotion Statements
Java Repetiotion StatementsJava Repetiotion Statements
Java Repetiotion Statements
Huda Alameen
 
C++ decision making
C++ decision makingC++ decision making
C++ decision making
Zohaib Ahmed
 
Control structures IN SWIFT
Control structures IN SWIFTControl structures IN SWIFT
Control structures IN SWIFT
LOVELY PROFESSIONAL UNIVERSITY
 
Java input Scanner
Java input Scanner Java input Scanner
Java input Scanner
Huda Alameen
 
Java loops for, while and do...while
Java loops   for, while and do...whileJava loops   for, while and do...while
Java loops for, while and do...while
Jayfee Ramos
 
What is while loop?
What is while loop?What is while loop?
What is while loop?
AnuragSrivastava272
 
Javascript conditional statements 1
Javascript conditional statements 1Javascript conditional statements 1
Javascript conditional statements 1
Jesus Obenita Jr.
 
Java if else condition - powerpoint persentation
Java if else condition - powerpoint persentationJava if else condition - powerpoint persentation
Java if else condition - powerpoint persentation
Maneesha Caldera
 

What's hot (19)

Conditional statements in vb script
Conditional statements in vb scriptConditional statements in vb script
Conditional statements in vb script
 
Flow of control ppt
Flow of control pptFlow of control ppt
Flow of control ppt
 
Vbscript
VbscriptVbscript
Vbscript
 
Control structures in c++
Control structures in c++Control structures in c++
Control structures in c++
 
Conditional Loops Python
Conditional Loops PythonConditional Loops Python
Conditional Loops Python
 
Jumping statements
Jumping statementsJumping statements
Jumping statements
 
Program control statements in c#
Program control statements in c#Program control statements in c#
Program control statements in c#
 
Control flow statements in java
Control flow statements in javaControl flow statements in java
Control flow statements in java
 
Loops in java script
Loops in java scriptLoops in java script
Loops in java script
 
Control statements
Control statementsControl statements
Control statements
 
Decision making and looping
Decision making and loopingDecision making and looping
Decision making and looping
 
Java Repetiotion Statements
Java Repetiotion StatementsJava Repetiotion Statements
Java Repetiotion Statements
 
C++ decision making
C++ decision makingC++ decision making
C++ decision making
 
Control structures IN SWIFT
Control structures IN SWIFTControl structures IN SWIFT
Control structures IN SWIFT
 
Java input Scanner
Java input Scanner Java input Scanner
Java input Scanner
 
Java loops for, while and do...while
Java loops   for, while and do...whileJava loops   for, while and do...while
Java loops for, while and do...while
 
What is while loop?
What is while loop?What is while loop?
What is while loop?
 
Javascript conditional statements 1
Javascript conditional statements 1Javascript conditional statements 1
Javascript conditional statements 1
 
Java if else condition - powerpoint persentation
Java if else condition - powerpoint persentationJava if else condition - powerpoint persentation
Java if else condition - powerpoint persentation
 

Similar to Chapter 05

Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
Saad Sheikh
 
Constructs (Programming Methodology)
Constructs (Programming Methodology)Constructs (Programming Methodology)
Constructs (Programming Methodology)
Jyoti Bhardwaj
 
Control structures in C++ Programming Language
Control structures in C++ Programming LanguageControl structures in C++ Programming Language
Control structures in C++ Programming Language
Ahmad Idrees
 
Control Statement programming
Control Statement programmingControl Statement programming
Control Statement programming
University of Potsdam
 
05. Conditional Statements
05. Conditional Statements05. Conditional Statements
05. Conditional Statements
Intro C# Book
 
programming c language.
programming c language. programming c language.
programming c language.
Abdul Rehman
 
Programming Fundamentals in C++ structures
Programming Fundamentals in  C++ structuresProgramming Fundamentals in  C++ structures
Programming Fundamentals in C++ structures
ayshasafdarwaada
 
Using decision statements
Using decision statementsUsing decision statements
Using decision statements
Stephen JE Ventura
 
Control Structures08
Control Structures08Control Structures08
Control Structures08
David Millard
 
Chapter 8 - Conditional Statement
Chapter 8 - Conditional StatementChapter 8 - Conditional Statement
Chapter 8 - Conditional Statement
Deepak Singh
 
Selection
SelectionSelection
Lecture 2
Lecture 2Lecture 2
Lecture 2
Mohammed Khan
 
Java chapter 3
Java chapter 3Java chapter 3
Java chapter 3
Abdii Rashid
 
Loops and iteration.docx
Loops and iteration.docxLoops and iteration.docx
Loops and iteration.docx
NkurikiyimanaGodefre
 
06-Control-Statementskkkkkkkkkkkkkk.pptx
06-Control-Statementskkkkkkkkkkkkkk.pptx06-Control-Statementskkkkkkkkkkkkkk.pptx
06-Control-Statementskkkkkkkkkkkkkk.pptx
kamalsmail1
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
Soran University
 
07 flow control
07   flow control07   flow control
07 flow control
dhrubo kayal
 
LOOPS AND DECISIONS
LOOPS AND DECISIONSLOOPS AND DECISIONS
LOOPS AND DECISIONS
Aami Kakakhel
 
Flow of control C ++ By TANUJ
Flow of control C ++ By TANUJFlow of control C ++ By TANUJ
Flow of control C ++ By TANUJ
TANUJ ⠀
 
Ch05-converted.pptx
Ch05-converted.pptxCh05-converted.pptx
Ch05-converted.pptx
ShivamChaturvedi67
 

Similar to Chapter 05 (20)

Loops and conditional statements
Loops and conditional statementsLoops and conditional statements
Loops and conditional statements
 
Constructs (Programming Methodology)
Constructs (Programming Methodology)Constructs (Programming Methodology)
Constructs (Programming Methodology)
 
Control structures in C++ Programming Language
Control structures in C++ Programming LanguageControl structures in C++ Programming Language
Control structures in C++ Programming Language
 
Control Statement programming
Control Statement programmingControl Statement programming
Control Statement programming
 
05. Conditional Statements
05. Conditional Statements05. Conditional Statements
05. Conditional Statements
 
programming c language.
programming c language. programming c language.
programming c language.
 
Programming Fundamentals in C++ structures
Programming Fundamentals in  C++ structuresProgramming Fundamentals in  C++ structures
Programming Fundamentals in C++ structures
 
Using decision statements
Using decision statementsUsing decision statements
Using decision statements
 
Control Structures08
Control Structures08Control Structures08
Control Structures08
 
Chapter 8 - Conditional Statement
Chapter 8 - Conditional StatementChapter 8 - Conditional Statement
Chapter 8 - Conditional Statement
 
Selection
SelectionSelection
Selection
 
Lecture 2
Lecture 2Lecture 2
Lecture 2
 
Java chapter 3
Java chapter 3Java chapter 3
Java chapter 3
 
Loops and iteration.docx
Loops and iteration.docxLoops and iteration.docx
Loops and iteration.docx
 
06-Control-Statementskkkkkkkkkkkkkk.pptx
06-Control-Statementskkkkkkkkkkkkkk.pptx06-Control-Statementskkkkkkkkkkkkkk.pptx
06-Control-Statementskkkkkkkkkkkkkk.pptx
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
07 flow control
07   flow control07   flow control
07 flow control
 
LOOPS AND DECISIONS
LOOPS AND DECISIONSLOOPS AND DECISIONS
LOOPS AND DECISIONS
 
Flow of control C ++ By TANUJ
Flow of control C ++ By TANUJFlow of control C ++ By TANUJ
Flow of control C ++ By TANUJ
 
Ch05-converted.pptx
Ch05-converted.pptxCh05-converted.pptx
Ch05-converted.pptx
 

More from Graham Royce

Chapter 18
Chapter 18Chapter 18
Chapter 18
Graham Royce
 
Chapter 17
Chapter 17Chapter 17
Chapter 17
Graham Royce
 
Chapter 16
Chapter 16Chapter 16
Chapter 16
Graham Royce
 
Chapter 15
Chapter 15Chapter 15
Chapter 15
Graham Royce
 
Chapter 14
Chapter 14Chapter 14
Chapter 14
Graham Royce
 
Chapter 13
Chapter 13Chapter 13
Chapter 13
Graham Royce
 
Chapter 12
Chapter 12Chapter 12
Chapter 12
Graham Royce
 
Chapter 11
Chapter 11Chapter 11
Chapter 11
Graham Royce
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
Graham Royce
 
Chapter 09
Chapter 09Chapter 09
Chapter 09
Graham Royce
 
Chapter 08
Chapter 08Chapter 08
Chapter 08
Graham Royce
 
Chapter 07
Chapter 07Chapter 07
Chapter 07
Graham Royce
 
Chapter 06
Chapter 06Chapter 06
Chapter 06
Graham Royce
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
Graham Royce
 
Chapter 03
Chapter 03Chapter 03
Chapter 03
Graham Royce
 
Chapter 02
Chapter 02Chapter 02
Chapter 02
Graham Royce
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
Graham Royce
 
13 java in oracle
13 java in oracle13 java in oracle
13 java in oracle
Graham Royce
 
Java tut1 Coderdojo Cahersiveen
Java tut1 Coderdojo CahersiveenJava tut1 Coderdojo Cahersiveen
Java tut1 Coderdojo Cahersiveen
Graham Royce
 
My 3 min pitch pack
My 3 min pitch packMy 3 min pitch pack
My 3 min pitch pack
Graham Royce
 

More from Graham Royce (20)

Chapter 18
Chapter 18Chapter 18
Chapter 18
 
Chapter 17
Chapter 17Chapter 17
Chapter 17
 
Chapter 16
Chapter 16Chapter 16
Chapter 16
 
Chapter 15
Chapter 15Chapter 15
Chapter 15
 
Chapter 14
Chapter 14Chapter 14
Chapter 14
 
Chapter 13
Chapter 13Chapter 13
Chapter 13
 
Chapter 12
Chapter 12Chapter 12
Chapter 12
 
Chapter 11
Chapter 11Chapter 11
Chapter 11
 
Chapter 10
Chapter 10Chapter 10
Chapter 10
 
Chapter 09
Chapter 09Chapter 09
Chapter 09
 
Chapter 08
Chapter 08Chapter 08
Chapter 08
 
Chapter 07
Chapter 07Chapter 07
Chapter 07
 
Chapter 06
Chapter 06Chapter 06
Chapter 06
 
Chapter 04
Chapter 04Chapter 04
Chapter 04
 
Chapter 03
Chapter 03Chapter 03
Chapter 03
 
Chapter 02
Chapter 02Chapter 02
Chapter 02
 
Chapter 01
Chapter 01Chapter 01
Chapter 01
 
13 java in oracle
13 java in oracle13 java in oracle
13 java in oracle
 
Java tut1 Coderdojo Cahersiveen
Java tut1 Coderdojo CahersiveenJava tut1 Coderdojo Cahersiveen
Java tut1 Coderdojo Cahersiveen
 
My 3 min pitch pack
My 3 min pitch packMy 3 min pitch pack
My 3 min pitch pack
 

Recently uploaded

Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...
Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...
Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...
Eticketing.co
 
Sportr pitch deck for our saas based platform
Sportr pitch deck for our saas based platformSportr pitch deck for our saas based platform
Sportr pitch deck for our saas based platform
NathanielMDuncan
 
Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...
Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...
Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...
Eticketing.co
 
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
asabad1
 
Euro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docx
Euro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docxEuro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docx
Euro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docx
Eticketing.co
 
Georgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdf
Georgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdfGeorgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdf
Georgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdf
Eticketing.co
 
Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...
Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...
Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...
Eticketing.co
 
Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...
Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...
Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...
Eticketing.co
 
Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...
Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...
Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...
Eticketing.co
 
Psaroudakis: Family and Football – The Psaroudakis Success Story
Psaroudakis: Family and Football – The Psaroudakis Success StoryPsaroudakis: Family and Football – The Psaroudakis Success Story
Psaroudakis: Family and Football – The Psaroudakis Success Story
Psaroudakis
 
Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...
Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...
Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...
Eticketing.co
 
Tennis rules and techniques with information
Tennis rules and techniques with informationTennis rules and techniques with information
Tennis rules and techniques with information
mohsintariq167876
 
Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...
Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...
Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...
Eticketing.co
 
快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样
快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样
快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样
8z10jo1w
 
Turkey vs Georgia Prospects and Challenges in Euro Cup Germany.docx
Turkey vs Georgia Prospects and Challenges in Euro Cup Germany.docxTurkey vs Georgia Prospects and Challenges in Euro Cup Germany.docx
Turkey vs Georgia Prospects and Challenges in Euro Cup Germany.docx
Eticketing.co
 
Paris 2024 History-making Matildas team selected for Olympic Games.pdf
Paris 2024 History-making Matildas team selected for Olympic Games.pdfParis 2024 History-making Matildas team selected for Olympic Games.pdf
Paris 2024 History-making Matildas team selected for Olympic Games.pdf
Eticketing.co
 
JORNADA 11 LIGA MURO 2024BASQUETBOL1.pdf
JORNADA 11 LIGA MURO 2024BASQUETBOL1.pdfJORNADA 11 LIGA MURO 2024BASQUETBOL1.pdf
JORNADA 11 LIGA MURO 2024BASQUETBOL1.pdf
Arturo Pacheco Alvarez
 
Turkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docx
Turkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docxTurkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docx
Turkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docx
Eticketing.co
 
一比一原版(Curtin毕业证)科廷大学毕业证如何办理
一比一原版(Curtin毕业证)科廷大学毕业证如何办理一比一原版(Curtin毕业证)科廷大学毕业证如何办理
一比一原版(Curtin毕业证)科廷大学毕业证如何办理
apobqx
 
Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...
Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...
Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...
Eticketing.co
 

Recently uploaded (20)

Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...
Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...
Belgium vs Slovakia Belgium Euro 2024 Golden Generation Faces Euro Cup Final ...
 
Sportr pitch deck for our saas based platform
Sportr pitch deck for our saas based platformSportr pitch deck for our saas based platform
Sportr pitch deck for our saas based platform
 
Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...
Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...
Olympic 2024 Key Players and Teams to Watch in Men's and Women's Football at ...
 
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
 
Euro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docx
Euro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docxEuro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docx
Euro 2024 Belgium's Rebirth the New Generation Match the Golden Era.docx
 
Georgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdf
Georgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdfGeorgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdf
Georgia vs Portugal Euro Cup 2024 Clash Unites a Nation Amid Turmoil.pdf
 
Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...
Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...
Spain vs Italy Spain Route to The Euro Cup 2024 Final Who La Roja Will Face I...
 
Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...
Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...
Switzerland vs Germany At UEFA Euro 2024 the Full squad, preview, match sched...
 
Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...
Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...
Belgium vs Romania Ultimate Guide to Euro Cup 2024 Tactics, Ticketing, and Qu...
 
Psaroudakis: Family and Football – The Psaroudakis Success Story
Psaroudakis: Family and Football – The Psaroudakis Success StoryPsaroudakis: Family and Football – The Psaroudakis Success Story
Psaroudakis: Family and Football – The Psaroudakis Success Story
 
Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...
Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...
Poland vs Netherlands UEFA Euro 2024 Poland Battles Injuries Without Lewandow...
 
Tennis rules and techniques with information
Tennis rules and techniques with informationTennis rules and techniques with information
Tennis rules and techniques with information
 
Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...
Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...
Euro Cup Group E Preview, Team Strategies, Key Players, and Tactical Insights...
 
快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样
快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样
快速制作加拿大西蒙菲莎大学毕业证(sfu毕业证书)硕士学位证书原版一模一样
 
Turkey vs Georgia Prospects and Challenges in Euro Cup Germany.docx
Turkey vs Georgia Prospects and Challenges in Euro Cup Germany.docxTurkey vs Georgia Prospects and Challenges in Euro Cup Germany.docx
Turkey vs Georgia Prospects and Challenges in Euro Cup Germany.docx
 
Paris 2024 History-making Matildas team selected for Olympic Games.pdf
Paris 2024 History-making Matildas team selected for Olympic Games.pdfParis 2024 History-making Matildas team selected for Olympic Games.pdf
Paris 2024 History-making Matildas team selected for Olympic Games.pdf
 
JORNADA 11 LIGA MURO 2024BASQUETBOL1.pdf
JORNADA 11 LIGA MURO 2024BASQUETBOL1.pdfJORNADA 11 LIGA MURO 2024BASQUETBOL1.pdf
JORNADA 11 LIGA MURO 2024BASQUETBOL1.pdf
 
Turkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docx
Turkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docxTurkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docx
Turkey UEFA Euro 2024 Journey A Quest for Redemption and Success.docx
 
一比一原版(Curtin毕业证)科廷大学毕业证如何办理
一比一原版(Curtin毕业证)科廷大学毕业证如何办理一比一原版(Curtin毕业证)科廷大学毕业证如何办理
一比一原版(Curtin毕业证)科廷大学毕业证如何办理
 
Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...
Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...
Georgia vs Portugal Georgia UEFA Euro 2024 Squad Khvicha Kvaratskhelia Leads ...
 

Chapter 05

  • 2. 5 Branching Allows different code to execute based on a conditional test. if, if-else, and switch statements
  • 3. 5 If, Else, and Else-If if Statements “If the sky is blue, I’ll ride my bike.” else Statements “If the sky is red, I’ll drive; else (otherwise) I’ll ride my bike.” Else-if Idioms “If the sky is blue, I’ll ride my bike; else if the sky is red, I’ll drive, else I’ll walk.”
  • 4. 5 Nested if Statements if statements can be nested (combined) within other if statements to account for multiple conditions. If the sky is blue If there are clouds in the sky Do something for blue sky, cloudy days Else Do something for blue sky, cloudless days Else Do something for non-blue sky days
  • 5. 5 The switch Statement switch statements are an efficient way to choose between multiple options. Easier to expand options than else-if structures Easier to read than multiple else-if structures Use the break keyword to prevent “falling through” to next statement
  • 6. 5 Switch Evaluation switch statements evaluate int values: int x = 3; switch(x) { 1: x += 2; break; 2: x *= 2; break; 3: x /= 2; break; }
  • 7. 5 Logical Operators Combine or negate conditional tests Logical AND (&&) “The value of x is greater than 10 and the value of x is less than 20” (x > 10) && (x < 20); Logical OR (||) “The value of x is greater than 10 or the value of x is less than 5” (x > 10) || (x < 5); Logical NOT (!) “The value of x is not greater than 10” ! (x > 10);
  • 8. 5 Looping What is iteration? Iteration is a structure that repeats a block of code a certain number of times, or until a certain condition is met.
  • 9. 5 The while Loop “As long as this condition is true, execute this code” while ( counter < 11) { counter++; } Might not execute if the condition is already false
  • 10. 5 The for Loop Includes (optional) arguments for: An initialization variable A conditional test An action for ( int counter = 1; counter < 11; counter++ ) { System.out.print(counter + “ ”) }
  • 11. 5 The do...while Loop “Take this action, while this is true” int value = 10; do { value = value + 2; } while ( value < 10 ); Ensures at least one execution of code