Displaying Numbers 1 to 10 Using a While Loop in C#

This exercise focuses on using a while loop in C# to iterate through a set of numbers and display them on the screen. In this case, we will display the numbers from 1 to 10. The while loop is useful when you want to repeat a block of code as long as a certain condition is true.

In this example, the condition will be to continue looping until the number reaches 10. This will help you understand how to use a while loop to control repetitive actions and how to increment a counter within the loop.



Group

C# Flow Control Basics

Objective

The objective of this exercise is to write a C# program to display the numbers 1 to 10 on the screen using a "while" loop.

Write a C# program to display the numbers 1 to 10 on the screen using "while".

Example C# Exercise

 Copy C# Code
// First and Last Name: John Doe

using System;

namespace DisplayNumbersWhileLoop
{
    class Program
    {
        // Main method to start the program execution
        static void Main(string[] args)
        {
            // Declare a variable to store the current number
            int number = 1;

            // Start the while loop; it will run as long as number is less than or equal to 10
            while (number <= 10)
            {
                // Display the current number on the screen
                Console.WriteLine(number);

                // Increment the number by 1
                number++;
            }

            // Message when the loop ends
            Console.WriteLine("Numbers from 1 to 10 have been displayed.");
            
            // Wait for user input before closing the console window
            Console.ReadKey(); // Keeps the console open until a key is pressed
        }
    }
}

 Output

1
2
3
4
5
6
7
8
9
10
Numbers from 1 to 10 have been displayed.

Share this C# Exercise

More C# Practice Exercises of C# Flow Control Basics

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.