SlideShare a Scribd company logo
Paul Solt
iPhoneDev.tv
Loops
Can you repeat what you said again?
Paul Solt
iPhoneDev.tv
Overview
•Loops
•while loop
•for loop
•break
•continue
Paul Solt
iPhoneDev.tv
Loops
•Why?
•Data processing
•Image processing
•Gameplay
Paul Solt
iPhoneDev.tv
Count Down
T-minus 5 seconds
T-minus 4 seconds
T-minus 3 seconds
T-minus 2 seconds
T-minus 1 seconds
Take off!
Paul Solt
iPhoneDev.tv
while loop
// 1. Setup
while( /* 2. Condition */ ) {
// 3. Do work
// 4. Condition step
}
Paul Solt
iPhoneDev.tv
while loop
int seconds = 5;
while(seconds > 0) {
printf("T-minus %d secondsn", seconds);
seconds--;
}
printf("Take off!");
Paul Solt
iPhoneDev.tv
for loop
for( /* 1. Setup */ ;
/* 2. Condition */ ;
/* 3. Condition step */) {
// 4. Do Work
}
Paul Solt
iPhoneDev.tv
for loop
int seconds;
for(seconds = 5; seconds > 0; seconds--) {
printf("T-minus %d secondsn", seconds);
}
printf("Take off!");
Paul Solt
iPhoneDev.tv
break
for(seconds = 5; seconds > 0; seconds--) {
if(engineFailure) {
break;
}
printf("T-minus %d secondsn", seconds);
}
Paul Solt
iPhoneDev.tv
continue
while(!gameOver) {
if(skipCardPlayed) {
nextPerson();
continue;
}
playCard();
nextPerson();
}
Paul Solt
iPhoneDev.tv
Review
•while loop
•for loop
•break
•continue
Paul Solt
iPhoneDev.tv
Ad

Recommended

Tangled - Rapunzeltopia 01
Tangled - Rapunzeltopia 01
Kait Ritter
 
Tangled - Rapunzeltopia 02
Tangled - Rapunzeltopia 02
Kait Ritter
 
Morning Rush
Morning Rush
Stanley Chen
 
Fastball Special
Fastball Special
Kelsey Norden
 
เรื่อง ทำความรู้จักแป้นพิมพ์
เรื่อง ทำความรู้จักแป้นพิมพ์
pornthip7890
 
Rooster Bash
Rooster Bash
Stanley Chen
 
Tangled- Be Very Afraid 02
Tangled- Be Very Afraid 02
Kait Ritter
 
Tangled- Be Very Afraid 01
Tangled- Be Very Afraid 01
Kait Ritter
 
Youth WIP
Youth WIP
Maggie Dybas
 
Ashley mml season2 Boards - Space Orb Sequence
Ashley mml season2 Boards - Space Orb Sequence
AshleySimpson26
 
Robot Chase
Robot Chase
AshleySimpson26
 
Ashley mml season2 Boards - Escape The Whale
Ashley mml season2 Boards - Escape The Whale
AshleySimpson26
 
Hotdog Roommate Storyboard
Hotdog Roommate Storyboard
BerniceSioson
 
Moomoo Karma
Moomoo Karma
AshleySimpson26
 
Miser
Miser
Raymundo Mendoza Landa
 
Loops
Loops
Peter Andrews
 
Loops Basics
Loops Basics
Mushiii
 
Loops in C
Loops in C
Kamal Acharya
 
Loops c++
Loops c++
Shivani Singh
 
Loops in C Programming
Loops in C Programming
Himanshu Negi
 
C++ loop
C++ loop
Khelan Ameen
 
Loops
Loops
Kulachi Hansraj Model School Ashok Vihar
 
C++ programming
C++ programming
viancagerone
 
Functions in Objective-C and C Programming
Functions in Objective-C and C Programming
Paul Solt
 
Loops Do While Arduino Programming Robotics
Loops Do While Arduino Programming Robotics
JhaeZaSangcapGarrido
 
Loop in C Properties & Applications
Loop in C Properties & Applications
Emroz Sardar
 
loops and iteration.docx
loops and iteration.docx
JavvajiVenkat
 
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Priyom Majumder
 
Mesics lecture 7 iteration and repetitive executions
Mesics lecture 7 iteration and repetitive executions
eShikshak
 
Loops
Loops
SAMYAKKHADSE
 

More Related Content

What's hot (7)

Youth WIP
Youth WIP
Maggie Dybas
 
Ashley mml season2 Boards - Space Orb Sequence
Ashley mml season2 Boards - Space Orb Sequence
AshleySimpson26
 
Robot Chase
Robot Chase
AshleySimpson26
 
Ashley mml season2 Boards - Escape The Whale
Ashley mml season2 Boards - Escape The Whale
AshleySimpson26
 
Hotdog Roommate Storyboard
Hotdog Roommate Storyboard
BerniceSioson
 
Moomoo Karma
Moomoo Karma
AshleySimpson26
 
Miser
Miser
Raymundo Mendoza Landa
 

Viewers also liked (8)

Loops
Loops
Peter Andrews
 
Loops Basics
Loops Basics
Mushiii
 
Loops in C
Loops in C
Kamal Acharya
 
Loops c++
Loops c++
Shivani Singh
 
Loops in C Programming
Loops in C Programming
Himanshu Negi
 
C++ loop
C++ loop
Khelan Ameen
 
Loops
Loops
Kulachi Hansraj Model School Ashok Vihar
 
C++ programming
C++ programming
viancagerone
 
Ad

Similar to Loops and Objective-C and C Programming (20)

Functions in Objective-C and C Programming
Functions in Objective-C and C Programming
Paul Solt
 
Loops Do While Arduino Programming Robotics
Loops Do While Arduino Programming Robotics
JhaeZaSangcapGarrido
 
Loop in C Properties & Applications
Loop in C Properties & Applications
Emroz Sardar
 
loops and iteration.docx
loops and iteration.docx
JavvajiVenkat
 
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Priyom Majumder
 
Mesics lecture 7 iteration and repetitive executions
Mesics lecture 7 iteration and repetitive executions
eShikshak
 
Loops
Loops
SAMYAKKHADSE
 
Introduction to Java Programming - Lecture 11.pptx
Introduction to Java Programming - Lecture 11.pptx
AbdulKhaleqHerawi1
 
Loop(for, while, do while) condition Presentation
Loop(for, while, do while) condition Presentation
Badrul Alam
 
LOOP STATEMENTS AND TYPES OF LOOP IN C LANGUAGE BY RIZWAN
LOOP STATEMENTS AND TYPES OF LOOP IN C LANGUAGE BY RIZWAN
MD RIZWAN MOLLA
 
Chapter06.PPT
Chapter06.PPT
vamsiKrishnasai3
 
Looping statements in Java
Looping statements in Java
Jin Castor
 
Loop and while Loop
Loop and while Loop
JayBhavsar68
 
1660213363910.pdf
1660213363910.pdf
CuentaTemporal4
 
Loop (Computer programming and utilization)
Loop (Computer programming and utilization)
Digvijaysinh Gohil
 
[ITP - Lecture 11] Loops in C/C++
[ITP - Lecture 11] Loops in C/C++
Muhammad Hammad Waseem
 
C PROGRAMMING. Pptx new required for anyone.
C PROGRAMMING. Pptx new required for anyone.
makingupmind
 
Programming loop
Programming loop
University of Potsdam
 
Decision Making and Looping
Decision Making and Looping
Munazza-Mah-Jabeen
 
Loops in c
Loops in c
RekhaBudhwar
 
Functions in Objective-C and C Programming
Functions in Objective-C and C Programming
Paul Solt
 
Loops Do While Arduino Programming Robotics
Loops Do While Arduino Programming Robotics
JhaeZaSangcapGarrido
 
Loop in C Properties & Applications
Loop in C Properties & Applications
Emroz Sardar
 
loops and iteration.docx
loops and iteration.docx
JavvajiVenkat
 
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Loops in C Programming | for Loop | do-while Loop | while Loop | Nested Loop
Priyom Majumder
 
Mesics lecture 7 iteration and repetitive executions
Mesics lecture 7 iteration and repetitive executions
eShikshak
 
Introduction to Java Programming - Lecture 11.pptx
Introduction to Java Programming - Lecture 11.pptx
AbdulKhaleqHerawi1
 
Loop(for, while, do while) condition Presentation
Loop(for, while, do while) condition Presentation
Badrul Alam
 
LOOP STATEMENTS AND TYPES OF LOOP IN C LANGUAGE BY RIZWAN
LOOP STATEMENTS AND TYPES OF LOOP IN C LANGUAGE BY RIZWAN
MD RIZWAN MOLLA
 
Looping statements in Java
Looping statements in Java
Jin Castor
 
Loop and while Loop
Loop and while Loop
JayBhavsar68
 
Loop (Computer programming and utilization)
Loop (Computer programming and utilization)
Digvijaysinh Gohil
 
C PROGRAMMING. Pptx new required for anyone.
C PROGRAMMING. Pptx new required for anyone.
makingupmind
 
Ad

Recently uploaded (20)

Curietech AI in action - Accelerate MuleSoft development
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
A Constitutional Quagmire - Ethical Minefields of AI, Cyber, and Privacy.pdf
A Constitutional Quagmire - Ethical Minefields of AI, Cyber, and Privacy.pdf
Priyanka Aash
 
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Priyanka Aash
 
Securing AI - There Is No Try, Only Do!.pdf
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
janeliewang985
 
From Manual to Auto Searching- FME in the Driver's Seat
From Manual to Auto Searching- FME in the Driver's Seat
Safe Software
 
cnc-processing-centers-centateq-p-110-en.pdf
cnc-processing-centers-centateq-p-110-en.pdf
AmirStern2
 
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
yosra Saidani
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
Wenn alles versagt - IBM Tape schützt, was zählt! Und besonders mit dem neust...
Wenn alles versagt - IBM Tape schützt, was zählt! Und besonders mit dem neust...
Josef Weingand
 
The Future of Product Management in AI ERA.pdf
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
UserCon Belgium: Honey, VMware increased my bill
UserCon Belgium: Honey, VMware increased my bill
stijn40
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
Lessons Learned from Developing Secure AI Workflows.pdf
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
AI vs Human Writing: Can You Tell the Difference?
AI vs Human Writing: Can You Tell the Difference?
Shashi Sathyanarayana, Ph.D
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
OWASP Barcelona 2025 Threat Model Library
OWASP Barcelona 2025 Threat Model Library
PetraVukmirovic
 
Curietech AI in action - Accelerate MuleSoft development
Curietech AI in action - Accelerate MuleSoft development
shyamraj55
 
A Constitutional Quagmire - Ethical Minefields of AI, Cyber, and Privacy.pdf
A Constitutional Quagmire - Ethical Minefields of AI, Cyber, and Privacy.pdf
Priyanka Aash
 
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Coordinated Disclosure for ML - What's Different and What's the Same.pdf
Priyanka Aash
 
Securing AI - There Is No Try, Only Do!.pdf
Securing AI - There Is No Try, Only Do!.pdf
Priyanka Aash
 
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
Cluster-Based Multi-Objective Metamorphic Test Case Pair Selection for Deep N...
janeliewang985
 
From Manual to Auto Searching- FME in the Driver's Seat
From Manual to Auto Searching- FME in the Driver's Seat
Safe Software
 
cnc-processing-centers-centateq-p-110-en.pdf
cnc-processing-centers-centateq-p-110-en.pdf
AmirStern2
 
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
Salesforce Summer '25 Release Frenchgathering.pptx.pdf
yosra Saidani
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
Wenn alles versagt - IBM Tape schützt, was zählt! Und besonders mit dem neust...
Wenn alles versagt - IBM Tape schützt, was zählt! Und besonders mit dem neust...
Josef Weingand
 
The Future of Product Management in AI ERA.pdf
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
GenAI Opportunities and Challenges - Where 370 Enterprises Are Focusing Now.pdf
Priyanka Aash
 
UserCon Belgium: Honey, VMware increased my bill
UserCon Belgium: Honey, VMware increased my bill
stijn40
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
 
Lessons Learned from Developing Secure AI Workflows.pdf
Lessons Learned from Developing Secure AI Workflows.pdf
Priyanka Aash
 
AI vs Human Writing: Can You Tell the Difference?
AI vs Human Writing: Can You Tell the Difference?
Shashi Sathyanarayana, Ph.D
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
OWASP Barcelona 2025 Threat Model Library
OWASP Barcelona 2025 Threat Model Library
PetraVukmirovic
 

Loops and Objective-C and C Programming