0% found this document useful (0 votes)
298 views

Programming With C++

Loops allow programmers to repeatedly execute a block of code. There are three common types of loops in C++: 1. FOR loops use a counter variable to control the number of iterations. The syntax initializes the counter, defines a condition, and updates the counter. 2. WHILE loops continuously execute the code block as long as the condition is true. The condition is checked before each iteration. 3. DO WHILE loops are similar to while loops but execute the code block at least once before checking the condition, ensuring it always runs at least once.

Uploaded by

vikramuk
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
298 views

Programming With C++

Loops allow programmers to repeatedly execute a block of code. There are three common types of loops in C++: 1. FOR loops use a counter variable to control the number of iterations. The syntax initializes the counter, defines a condition, and updates the counter. 2. WHILE loops continuously execute the code block as long as the condition is true. The condition is checked before each iteration. 3. DO WHILE loops are similar to while loops but execute the code block at least once before checking the condition, ensuring it always runs at least once.

Uploaded by

vikramuk
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 10

Programming with C++

Loops
Why Loops
• Loops are used to repeat a block of
code. Being able to have your
program repeatedly execute a block
of code is one of the most basic but
useful tasks in programming

• many programs or websites that


produce extremely complex output
(such as a message board) are really
only executing a single task many
a loop lets you write a very simple
statement to produce a significantly
greater result simply by repetition.
Two Types of Loop
1. Pre-Check Loop – Executes zero or more
time.
if condition is False first time, loop
terminates without execution.
2. Post-Check Loop – Executes one or
more time.
if condition is False first time, loop
terminates after one execution, as the
condition will be checked after first execution.
FOR - Loop
• FOR - for loops are the most useful
type. The syntax for a for loop is 

for ( variable initialization; condition;


variable update )
{
Code to execute while the
condition is true
}
FOR - Loop
#include <iostream.h>
int main()
{
for ( int x = 0; x < 10; x++ )
{
// Keep in mind that the loop condition
checks
// the conditional statement before it
loops again.
// consequently, when x equals 10 the
loop breaks.
// x is updated before the condition is
checked.
cout<< x <<endl;
}
WHILE - Loop
#include <iostream>
using namespace std; // So we can see cout
and endl
int main()
{
int x = 0;
while ( x < 10 ) // While x is less than 10
{
cout<< x <<endl; x++;
}
cin.get();
}
DO WHILE - Loop

• DO WHILE Loop syntax

Do
{
<code for execution>
} while ( condition );
DO WHILE - Loop
#include <iostream>
using namespace std;
int main()
{
int x;
x = 0;
do
{
// "Hello, world!" is printed at least one time
// even though the condition is false
cout<<"Hello, world!\n";
}
while ( x != 0 );
cin.get();
}
Important
• Keep in mind that you must include a
trailing semi-colon after the while in
the above example.
• A common error is to forget that a
do..while loop must be terminated with
a semicolon (the other loops should
not be terminated with a semicolon,
adding to the confusion).
• Notice that this loop will execute once,
because it automatically executes
before checking the condition. 

You might also like