SlideShare a Scribd company logo
Loop C# - Lec7 (Workshop on C# Programming: Learn to Build)
C#
Day 2
Lecture7: Loops
Loops
for(init; condition; increment)
{
statement;
}
Loops
for(int i = 5; i<= 10; i++)
{
Console.WriteLine("Value of a is: {0}", i);
}
Console.ReadLine();
Loops
while(condition)
{
statement;
}
Loops
int i = 10;
while(i<20){
Console.WriteLine("Value of i: {0} ", i);
i++;
}
Console.ReadLine();
Loops
do {
statement;
}
while(condition);
Loops
int i = 10;
do{
Console.WriteLine("Value of i: {0}", i);
i++;
}
while(i<20);
Console.ReadLine();
Loops
foreach(type element in iterable-item)
{
statement;
}
Loops
char[] array = {'B', 'a', 'n', 'g', 'l', 'a', 'd', 'e', 's', 'h'};
Foreach(char ch in array){
Console.WriteLine(ch);
}
This slide is provided as a course material in the workshop named
“Workshop on C# Programming: Learn to Build”.
Organized by-
East West University Computer Programming Club (EWUCoPC)
Prepared by-
Jannat Binta Alam
Campus Ambassador
Young Engineers Society (YES)
E-mail: jannat.cse.ewu@gmail.com
Ad

Recommended

Variable C# - Lec5 (Workshop on C# Programming: Learn to Build)
Variable C# - Lec5 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
String C# - Lec10 (Workshop on C# Programming: Learn to Build)
String C# - Lec10 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Problemas de Arreglos en c++
Problemas de Arreglos en c++
Manfred Ariel Martinez Bastos
 
Code
Code
Lay Chan Dara Raksmey
 
Sol8
Sol8
University Of Lahore
 
Programa.eje
Programa.eje
guapi387
 
JavaScript - Agora nervoso
JavaScript - Agora nervoso
Luis Vendrame
 
Project_Euler_No_104_Pandigital_Fibonacci_ends
Project_Euler_No_104_Pandigital_Fibonacci_ends
? ?
 
Tugas
Tugas
andriarma
 
Array using recursion
Array using recursion
Swarup Boro
 
Class array
Class array
nky92
 
File Handling Program
File Handling Program
တမန္ေတာ္ က်ဴးပါက်ဲ
 
メディアアートにおけるプログラミング言語Rubyの役割
メディアアートにおけるプログラミング言語Rubyの役割
Koichiro Eto
 
Tugas Program C++
Tugas Program C++
Reynes E. Tekay
 
Cpp c++ 2
Cpp c++ 2
Sltnalt Cosmology
 
The Big Three
The Big Three
Roman Okolovich
 
2016 gunma.web games-and-asm.js
2016 gunma.web games-and-asm.js
Noritada Shimizu
 
20151224-games
20151224-games
Noritada Shimizu
 
JavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovy
Yasuharu Nakano
 
week-12x
week-12x
KITE www.kitecolleges.com
 
5 1. character processing
5 1. character processing
웅식 전
 
C- Programs - Harsh
C- Programs - Harsh
Harsh Sharma
 
Blocks+gcd入門
Blocks+gcd入門
領一 和泉田
 
Include
Include
Angie Borda
 
Oopsprc1c
Oopsprc1c
Ankit Dubey
 
Data structure programs in c++
Data structure programs in c++
mmirfan
 
contoh Program queue
contoh Program queue
Bina Sarana Informatika
 
An Introduction to JavaScript: Week 4
An Introduction to JavaScript: Week 4
Event Handler
 
Visual Programing basic lectures 7.pptx
Visual Programing basic lectures 7.pptx
Mrhaider4
 
Loops in C# for loops while and do while loop.
Loops in C# for loops while and do while loop.
Abid Kohistani
 

More Related Content

What's hot (20)

Tugas
Tugas
andriarma
 
Array using recursion
Array using recursion
Swarup Boro
 
Class array
Class array
nky92
 
File Handling Program
File Handling Program
တမန္ေတာ္ က်ဴးပါက်ဲ
 
メディアアートにおけるプログラミング言語Rubyの役割
メディアアートにおけるプログラミング言語Rubyの役割
Koichiro Eto
 
Tugas Program C++
Tugas Program C++
Reynes E. Tekay
 
Cpp c++ 2
Cpp c++ 2
Sltnalt Cosmology
 
The Big Three
The Big Three
Roman Okolovich
 
2016 gunma.web games-and-asm.js
2016 gunma.web games-and-asm.js
Noritada Shimizu
 
20151224-games
20151224-games
Noritada Shimizu
 
JavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovy
Yasuharu Nakano
 
week-12x
week-12x
KITE www.kitecolleges.com
 
5 1. character processing
5 1. character processing
웅식 전
 
C- Programs - Harsh
C- Programs - Harsh
Harsh Sharma
 
Blocks+gcd入門
Blocks+gcd入門
領一 和泉田
 
Include
Include
Angie Borda
 
Oopsprc1c
Oopsprc1c
Ankit Dubey
 
Data structure programs in c++
Data structure programs in c++
mmirfan
 
contoh Program queue
contoh Program queue
Bina Sarana Informatika
 
An Introduction to JavaScript: Week 4
An Introduction to JavaScript: Week 4
Event Handler
 

Similar to Loop C# - Lec7 (Workshop on C# Programming: Learn to Build) (20)

Visual Programing basic lectures 7.pptx
Visual Programing basic lectures 7.pptx
Mrhaider4
 
Loops in C# for loops while and do while loop.
Loops in C# for loops while and do while loop.
Abid Kohistani
 
For Beginners - C#
For Beginners - C#
Snehal Harawande
 
Loops in C.net.pptx
Loops in C.net.pptx
Fajela
 
Csphtp1 05
Csphtp1 05
HUST
 
06.Loops
06.Loops
Intro C# Book
 
lecture-06 Lopikjjiu8iuuiujijijijioop.pptx
lecture-06 Lopikjjiu8iuuiujijijijioop.pptx
kingofdeath1380
 
Oops pramming with examples
Oops pramming with examples
Syed Khaleel
 
Lesson2
Lesson2
Alex Honcharuk
 
C# Loops
C# Loops
guestae0484
 
16. Arrays Lists Stacks Queues
16. Arrays Lists Stacks Queues
Intro C# Book
 
csharp repitition structures
csharp repitition structures
Micheal Ogundero
 
C# Loops
C# Loops
Hock Leng PUAH
 
10control statement in c#
10control statement in c#
Sireesh K
 
(3) c sharp introduction_basics_part_ii
(3) c sharp introduction_basics_part_ii
Nico Ludwig
 
arrays-120712074248-phpapp01
arrays-120712074248-phpapp01
Abdul Samee
 
CSharp Presentation
CSharp Presentation
Vishwa Mohan
 
C# loops
C# loops
baabtra.com - No. 1 supplier of quality freshers
 
C# basics
C# basics
sagaroceanic11
 
Operators loops conditional and statements
Operators loops conditional and statements
Vladislav Hadzhiyski
 
Visual Programing basic lectures 7.pptx
Visual Programing basic lectures 7.pptx
Mrhaider4
 
Loops in C# for loops while and do while loop.
Loops in C# for loops while and do while loop.
Abid Kohistani
 
Loops in C.net.pptx
Loops in C.net.pptx
Fajela
 
Csphtp1 05
Csphtp1 05
HUST
 
lecture-06 Lopikjjiu8iuuiujijijijioop.pptx
lecture-06 Lopikjjiu8iuuiujijijijioop.pptx
kingofdeath1380
 
Oops pramming with examples
Oops pramming with examples
Syed Khaleel
 
16. Arrays Lists Stacks Queues
16. Arrays Lists Stacks Queues
Intro C# Book
 
csharp repitition structures
csharp repitition structures
Micheal Ogundero
 
10control statement in c#
10control statement in c#
Sireesh K
 
(3) c sharp introduction_basics_part_ii
(3) c sharp introduction_basics_part_ii
Nico Ludwig
 
arrays-120712074248-phpapp01
arrays-120712074248-phpapp01
Abdul Samee
 
CSharp Presentation
CSharp Presentation
Vishwa Mohan
 
Operators loops conditional and statements
Operators loops conditional and statements
Vladislav Hadzhiyski
 
Ad

More from Jannat Ruma (8)

Windows Form - Lec12 (Workshop on C# Programming: Learn to Build)
Windows Form - Lec12 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Class C# - Lec11 (Workshop on C# Programming: Learn to Build)
Class C# - Lec11 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Method C# - Lec8 (Workshop on C# Programming: Learn to Build)
Method C# - Lec8 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Decision Making C# - Lec6 (Workshop on C# Programming: Learn to Build)
Decision Making C# - Lec6 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Type Casting C# - Lec4 (Workshop on C# Programming: Learn to Build)
Type Casting C# - Lec4 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Operator C# - Lec3 (Workshop on C# Programming: Learn to Build)
Operator C# - Lec3 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Data Type C# - Lec2 (Workshop on C# Programming: Learn to Build)
Data Type C# - Lec2 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
C# Basic - Lec1 (Workshop on C# Programming: Learn to Build)
C# Basic - Lec1 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Windows Form - Lec12 (Workshop on C# Programming: Learn to Build)
Windows Form - Lec12 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Class C# - Lec11 (Workshop on C# Programming: Learn to Build)
Class C# - Lec11 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Method C# - Lec8 (Workshop on C# Programming: Learn to Build)
Method C# - Lec8 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Decision Making C# - Lec6 (Workshop on C# Programming: Learn to Build)
Decision Making C# - Lec6 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Type Casting C# - Lec4 (Workshop on C# Programming: Learn to Build)
Type Casting C# - Lec4 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Operator C# - Lec3 (Workshop on C# Programming: Learn to Build)
Operator C# - Lec3 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Data Type C# - Lec2 (Workshop on C# Programming: Learn to Build)
Data Type C# - Lec2 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
C# Basic - Lec1 (Workshop on C# Programming: Learn to Build)
C# Basic - Lec1 (Workshop on C# Programming: Learn to Build)
Jannat Ruma
 
Ad

Recently uploaded (20)

Publishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke Warner
Brooke Warner
 
Revista digital preescolar en transformación
Revista digital preescolar en transformación
guerragallardo26
 
What are the benefits that dance brings?
What are the benefits that dance brings?
memi27
 
Overview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo Slides
Celine George
 
Plate Tectonic Boundaries and Continental Drift Theory
Plate Tectonic Boundaries and Continental Drift Theory
Marie
 
What is FIle and explanation of text files.pptx
What is FIle and explanation of text files.pptx
Ramakrishna Reddy Bijjam
 
LDMMIA GRAD Student Check-in Orientation Sampler
LDMMIA GRAD Student Check-in Orientation Sampler
LDM & Mia eStudios
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
ChristinaFortunova
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
BINARY files CSV files JSON files with example.pptx
BINARY files CSV files JSON files with example.pptx
Ramakrishna Reddy Bijjam
 
“THE BEST CLASS IN SCHOOL”. _
“THE BEST CLASS IN SCHOOL”. _
Colégio Santa Teresinha
 
Introduction to problem solving Techniques
Introduction to problem solving Techniques
merlinjohnsy
 
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
parmarjuli1412
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
razelitouali
 
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
TechSoup
 
ICT-8-Module-REVISED-K-10-CURRICULUM.pdf
ICT-8-Module-REVISED-K-10-CURRICULUM.pdf
penafloridaarlyn
 
Introduction to Generative AI and Copilot.pdf
Introduction to Generative AI and Copilot.pdf
TechSoup
 
Publishing Your Memoir with Brooke Warner
Publishing Your Memoir with Brooke Warner
Brooke Warner
 
Revista digital preescolar en transformación
Revista digital preescolar en transformación
guerragallardo26
 
What are the benefits that dance brings?
What are the benefits that dance brings?
memi27
 
Overview of Employee in Odoo 18 - Odoo Slides
Overview of Employee in Odoo 18 - Odoo Slides
Celine George
 
Plate Tectonic Boundaries and Continental Drift Theory
Plate Tectonic Boundaries and Continental Drift Theory
Marie
 
What is FIle and explanation of text files.pptx
What is FIle and explanation of text files.pptx
Ramakrishna Reddy Bijjam
 
LDMMIA GRAD Student Check-in Orientation Sampler
LDMMIA GRAD Student Check-in Orientation Sampler
LDM & Mia eStudios
 
The Man In The Back – Exceptional Delaware.pdf
The Man In The Back – Exceptional Delaware.pdf
dennisongomezk
 
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
FEBA Sofia Univercity final diplian v3 GSDG 5.2025.pdf
ChristinaFortunova
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
BINARY files CSV files JSON files with example.pptx
BINARY files CSV files JSON files with example.pptx
Ramakrishna Reddy Bijjam
 
Introduction to problem solving Techniques
Introduction to problem solving Techniques
merlinjohnsy
 
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
parmarjuli1412
 
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
ROLE PLAY: FIRST AID -CPR & RECOVERY POSITION.pptx
Belicia R.S
 
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Battle of Bookworms 2025 - U25 Literature Quiz by Pragya
Pragya - UEM Kolkata Quiz Club
 
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
Energy Balances Of Oecd Countries 2011 Iea Statistics 1st Edition Oecd
razelitouali
 
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
ABCs of Bookkeeping for Nonprofits TechSoup.pdf
TechSoup
 
ICT-8-Module-REVISED-K-10-CURRICULUM.pdf
ICT-8-Module-REVISED-K-10-CURRICULUM.pdf
penafloridaarlyn
 
Introduction to Generative AI and Copilot.pdf
Introduction to Generative AI and Copilot.pdf
TechSoup
 

Loop C# - Lec7 (Workshop on C# Programming: Learn to Build)