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
Show 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.