Javatpoint Logo
Javatpoint Logo

For Next Loop

A For Next loop is used to repeatedly execute a sequence of code or a block of code until a given condition is satisfied. A For loop is useful in such a case when we know how many times a block of code has to be executed. In VB.NET, the For loop is also known as For Next Loop.

Syntax

Let's understand the For Next loop in detail.

  • For: It is the keyword that is present at the beginning of the definition.
  • variable_name: It is a variable name, which is required in the For loop Statement. The value of the variable determines when to exit from the For-Next loop, and the value should only be a numeric.
  • [Data Type]: It represents the Data Type of the variable_name.
  • start To end: The start and end are the two important parameters representing the initial and final values of the variable_name. These parameters are helpful while the execution begins, the initial value of the variable is set by the start. Before the completion of each repetition, the variable's current value is compared with the end value. And if the value of the variable is less than the end value, the execution continues until the variable's current value is greater than the end value. And if the value is exceeded, the loop is terminated.
  • Step: A step parameter is used to determine by which the counter value of a variable is increased or decreased after each iteration in a program. If the counter value is not specified; It uses 1 as the default value.
  • Statements: A statement can be a single statement or group of statements that execute during the completion of each iteration in a loop.
  • Next: In VB.NET a Next is a keyword that represents the end of the For loop's

Flowchart of For Next loop

The following flowchart represents the functioning of the For Next loop in the VB.NET programming language.

For Next Loop

In the above flow chart, the first step is to initialize the variable name with the start value. And then, the value of the variable will be compared to the end expression or value. If the condition is true, the control enters the loop body and executes the statements. After that, the value of a variable will be automatically incremented by the compiler. Upon completion of each iteration, the current value of a variable will be again compared to the end expression. If the condition is not true, the controlled exit from the loop.

Example 1. Write a simple program to print the number from 1 to 10 using the For Next loop.

Number.vb

Output:

For Next Loop

In the above example, we have initialized an integer variable i with an initial value 1. The For loop will continuously execute its body until the value of i is smaller or equal to 10. After each iteration, the value of i is automatically increased with 'Step 1'. If the value of i reached 10, the loop would be terminated and control transfer to the Main() function.

Further, we can change the Step in For Next loop. Write the following program to skip the number is 2.

Number.vb

Output:

For Next Loop

As we can see in the above output, the value of the variable i is initialized with 1, and the value of i is skipped by 'Step 2' in the loop for each iteration to print the skipped number from 1 to 10.

Example 2: Write a simple program to print a table in the VB.NET.

Table.vb

Output:

For Next Loop

Nested For Next Loop in VB.NET

In VB.NET, when we write one For loop inside the body of another For Next loop, it is called Nested For Next loop.

Syntax:

Following is the example of Nested For Next loop in VB.NET.

Nested_loop.vb

Output:

For Next Loop

In the above example, at each iteration of the outer loop, the inner loop is repeatedly executed its entire cycles until the condition is not satisfied.

Example 2: Write a program to print a pattern in VB.NET.

Pattern.vb

Output:

For Next Loop





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA