Link Search Menu Expand Document

More loops

In part 1 we had a look of the basic while-true loop structure

while (true)
{
  // Do something
}

This is very handy when the program has to repeat a functionality until the user provides certain input.

Next, we’ll come to know a few other ways to implement loops.

While-loop with a condition

So far we have been using a loop with the boolean “true” in its paranthesis, so the loop continues forever (or until the loop is ended with the “break” command ).

Actually the paranthesis of a loop contain a conditional expression, or a condition, just like the paranthesis of an “if statement”. The true value can be replaced with an expression, which is evaluated as the program is executed. The expression is defined the same way as the condition of a conditional statement.

The following code prints the numbers 1,2,…,5. When the value of the variable number is more than 5, the while-condition evaluates to false and the execution ends.

int number = 1;

while (number < 6) 
{
  Console.WriteLine(number);
  number++;
}

The code above can be read “As long as the value of the variable number is less than 6, print the value of the variable number and increase the value of the variable number by one”.

In the code is also a new way to increase a number’s value. Above the value of the variable “number” is increased by one every time the loop body is executed.

The program prints as below.

1
2
3
4
5

For-loop

Above we learned how a “while-loop” with a condition can be used to go through numbers in a certain interval.

The structure of this kind of loop is the following.

int i = 0;
while (i < 10) 
{
  Console.WriteLine(i);
  i++;
}

The above loop can be split into three parts. First we introduce the variable i, used to count the number of times the loop has executed, and set its value to 0: int i = 0;. This is followed by the definition of the loop – the loops condition is i < 10 so the loop is executed as long as the value of the variable i is less than 10. The loop body contains the functionality to be executed Console.WriteLine(i);, which is followed by increasing the value of the variable i++.

The same can be achieved with a for-loop like so.

for (int i = 0; i < 10; i++) 
{
  Console.WriteLine(i);
}

A for-loop contains four parts:

  • introducing the variable for counting the number of executions;
  • the condition of the loop;
  • increasing (or decreasing or changing) the value of the counter variable; and
  • the functionality to be executed.
for (*introducting a variable*; *condition*; *increasing the counter*) 
{
  // Functionality to be executed
}

Let’s see this in action:

for (int i = 0; i < 5; i++) 
{
  Console.WriteLine(i);
}

The example above prints the numbers from zero to four. The interval can also be defined using variables – the example below uses variables start and end to define the interval of numbers the loop goes through.

int start = 3;
int end = 7;
for (int i = start; i < end; i++) 
{
  Console.WriteLine(i);
}

We will continue practicing loops in the exercises. You can use either a while-loop with a condition, or a for-loop.

On Stopping a Loop Execution

A loop does not stop executing immediately when its condition evaluates to true. A loop’s condition is evaluated at the start of a loop, i.e.,

  • when the next statement to be executed is a loop, and
  • the execution of the loop body has finished.

Let’s look at the following loop.

int number = 1;

while (number != 2) 
{
  Console.WriteLine(number);
  number = 2;
  Console.WriteLine(number);
  number = 1;
}

This prints

1
2
1
2
... keeps on going forever

Even though number equals 2 at one point, the loop runs forever.

The condition of a loop is evaluated when the execution of a loop starts and when the execution of the loop body has reached the closing curly bracket. If the condition evaluates to true, execution continues from the top of the loop body. If the condition evaluates to false, execution continues from the first statement following the loop.

This also applies to for-loops. In the example below, loop execution – when understood incorrectly – should end when i equals 100. However, it doesn’t.

for (int i = 0; i != 100; i++) 
{
  Console.WriteLine(i);
  i = 100;
  Console.WriteLine(i);
  i = 0;
}

The loop above never stops executing.

Repeating Functionality

One common program type is “do something certain amount of times”. What’s common to all these programs is repetition. Some functionality is done repeatedly, and a counter variable is used to keep track of the repetitions.

The following program calculates the product 4*3 somewhat clumsily, i.e., as the sum 3 + 3 + 3 + 3:

int result = 0;

int i = 0;
while (true) 
{
  result += 3; // shorthand for result = result + 3
  i++;  // shorthand for i = i + 1

  if (i == 4) 
  {
      break;
  }
}

Console.WriteLine(result);

The same functionality can be achieved with the following code.

int result = 0;

int i = 0;
while (i < 4) 
{
  result += 3; // shorthand for result = result + 3
  i++;  // shorthand for i = i + 1
}

Console.WriteLine(result);

Or by using a for-loop as seen in the following.

int result = 0;

for (int i = 0; i < 4; i++) 
{
  result += 3;
}

Console.WriteLine(result);

The program execution using a while-loop is visualized below.

When the number of variables increases, understanding a program becomes harder. Simulating program execution can help in understanding it.

You can simulate program execution by drawing a table containing a column for each variable and condition of a program, and a separate space for program output. You then go through the source code line by line, and write down the changes to the state of the program (the values of each variable or condition), and the program output.

The values of variables result and i from the previous example have been written out onto the table below at each point the condition i < 4 is evaluated.

result i i < 4
0 0 true
3 1 true
9 3 true
6 2 true
12 4 false

On the Structure of Programs Using Loops

In the previous examples, we have concentrated on cases where the loop is executed a predetermined number of times. The number of repetitions can be based on user input – in these cases, the for-loop is quite handy.

In programs where the loop body has to be executed until the user gives certain input, the for-loop is not too great. In these cases, the while-true loop we practiced earlier works well.

Let’s take a look at a somewhat more complex program that reads integers from the user. The program handles negative numbers as invalid, and zero stops the loop. When the user enters zero, the program prints the sum of valid numbers, the number of valid numbers and the number of invalid numbers.

A possible solution is detailed below. However, the style of the example is not ideal.

Console.Write("Write numbers, negative numbers are invalid: ");
int sum = 0;
int validNumbers = 0;
int invalidNumbers = 0;

while (true) 
{
  int input = Convert.ToInt32(Console.ReadLine());

  if (input == 0) 
  {
    Console.WriteLine("Sum of valid numbers: " + sum);
    Console.WriteLine("Valid numbers: " + validNumbers);
    Console.WriteLine("Invalid numbers: " + invalidNumbers);
    break;
  }

  if (input < 0) {
      invalidNumbers++;
      continue;
  }

  sum += input;
  validNumbers++;
}

In the code above, the computation executed after the loop has ended has been implemented inside of the loop. This approach is not recommended as it can easily lead to very complex program structure. If something else –e.g., reading more input – is to be done when the loop ends, it could also easily end up being placed inside of the loop. As more and more functionality is needed, the program becomes increasingly harder to read.

Let’s stick to the following loop structure:

// Create variables needed for the loop

while (true) 
{
  // read input

  // end the loop --break

  // check for invalid input -- continue

  // handle valid input
}

// functionality to execute after the loop ends

In other words, the program structure is cleaner if the things to be done after the loop ends are placed outside of it.

Console.Write("Write numbers, negative numbers are invalid: ");
int sum = 0;
int validNumbers = 0;
int invalidNumbers = 0;

while (true) 
{
  int input = Convert.ToInt32(Console.ReadLine());

  if (input == 0) {
      break;
  }

  if (input < 0) {
      invalidNumbers++;
      continue;
  }

  sum += input;
  validNumbers++;
}

Console.WriteLine("Sum of valid numbers: " + sum);
Console.WriteLine("Valid numbers: " + validNumbers);
Console.WriteLine("Invalid numbers: " + invalidNumbers);

You can now do the exercises for more loops