Skip to main content

C# While Loop

To become expert programmer from novice, you need to complete cover the looping segments. Loop is very important in every programming language that saves you from repetitive nature of work. The C# supports While, do while, and for loop. However, you can also use foreach and goto statement for looping.

The while loop is one of the important looping construct, that is being widely used in C sharp programming language. To understand the concept of while loop, consider the following diagram






In the above example, three things are important.

(i) Initialization
(ii) Increment/Decrement
(iii) Termination

These are the important characteristics of any loop. Initialization represents the starting position from there your loop will be started. In the above example int i=0 refers to initialization of while loop. i++ refers to increment/decrement and finally while(i<10) refers to the termination of while loop.

Each time the while loop executed, it checks for condition whether the value of i is less than 10 or not. If the value of i is less than 10, the loop will be executed and increment i by one and then print the value of i. When the value of i reaches 10, the while(i<10) condition becomes false and terminates the loop. To understand more clearly while loop, study the following example that print table of given number using while loop.


Example:


using System;

namespace While_Loop
{
  class Program
   {
     static void Main(string[] args)
      {
        int num1,res, i;

        Console.WriteLine("Enter a number");
        num1 = Convert.ToInt32(Console.ReadLine());

        i = 1; //Initialization
        //Check whether condition matches or not        while (i <= 10)
         {
           res = num1 * i;
           Console.WriteLine("{0} x {1} = {2}", num1, i,res);
           i++; //Increment by one
         }
        Console.ReadLine();           
      }
   }
}



Output


Enter a number
8
8 x 1 = 8
8 x 2 = 16
8 x 3 = 24
8 x 4 = 32
8 x 5 = 40
8 x 6 = 48
8 x 7 = 56
8 x 8 = 64
8 x 9 = 72
8 x 10 = 80


Sometime, you don’t know the starting position of loop but want to execute some code in while loop. Or, you might want to run infinite loop that will be terminate with special character. In this situation, you can use while(true) as infinite loop.

 Example:

using System;

namespace while_true
{
  class Program
   {
     static void Main(string[] args)
      {
        int num,sum=0, res=0;
        Console.WriteLine("Enter number to add. Press x for Terminate the program");
        while(true)
         {
           num=Convert.ToInt32(Console.ReadLine());
           if (num == -1)
            {
              break;
            }
           sum=res;
           res+=num;
          Console.WriteLine("\n{0} + {1} = {2}", sum, num,res);
         }
        Console.WriteLine("\n\nAborting... Press Enter.");
        Console.ReadLine();
      }
   }
}



Output

Enter number to add. Press -1 for Terminate the program
6

0 + 6 = 6
5

6 + 5 = 11
4

11 + 4 = 15
3

15 + 3 = 18
2

18 + 2 = 20
1

20 + 1 = 21
-1


Aborting...Press Enter.




Comments

Popular posts from this blog

C# Array

Array is a collection of variable of same data type. If you have declare 1000 integer variable, then you can declare an integer type array of 1000 size. The value of array can be accessed using index position of array. The first index position of array is zero. In C#, there two types of array: Single Dimensional Array and Multi Dimensional Array. You can use both type of array easily and can access its element using loop constructs or index position.

Structure (C#)

Structure is the value type data type that can contain variables, methods, properties, events and so on. It simplifies the program and enhance performance of code in C# programming. The structure encapsulate small group of related variables inside a single user-defined data type. It improves speed and memory usage and also enhances performance and clarity of your code. How to use structure in C#? It is very simple to use structure in C#. The following programming example will show you to how to create and use structure in C# programming. Programming Example of Structure (C#) using System; namespace Structure {    class Program    {      // creating three different variable in single structure       struct book        {          public string bookname;          public int price;          public stri...