Programming Presentation
Programming Presentation
• Roll numbers # 2, 3, 4, 5, 6, 7
• Class# Bs chemistry (2A)
• Subject # computer application and programming
• Topic # LOOP
• Submitted To # Prof Hafeez ur Rehman
CONTENTS
• LOOPING STATEMENT
• WHILE LOOP
• DO WHILE LOOP
• FOR LOOP
LOOP
3
Increment/
Decrement
(Increase/Decrease)
TYPES OF LOOP
There are three types of loop
2 3
1
6
Increase/Decrease;
Free presentation PowerPoint - SLIDESELLER.COM }
WHILE LOOP
Definition
Execute a sequence of statements multiple times and
abbreviates the code that manages the loop variable.
SYNTAX
For (initialization; condition ;
increment/decrement)
{
Statement ;
}
EXAMPLE…..
Write a program to display the values from 1to 10.
EXAMPLE……