Displaying Letters from 'B' to 'N' Using a 'For' Loop in C#

In this exercise, we will write a C# program that prints the uppercase letters B through N using a for loop. The program will iterate over the ASCII values ​​of these letters and display them sequentially. This exercise helps you understand loops, character manipulation, and ASCII values ​​in C#.



Group

C# Basic Data Types Overview

Objective

1. Use a `for` loop to iterate from the character 'B' to 'N'.
2. Print each letter on the same line, separated by spaces.
3. Ensure that only uppercase letters from 'B' to 'N' are displayed.
4. Run the program and verify the output.

Write a C# program to write the letters "B" to "N" (uppercase), using "for".

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    static void Main()
    {
        // Loop through characters from 'B' to 'N'
        for (char letter = 'B'; letter <= 'N'; letter++)
        {
            Console.Write(letter + " ");
        }
        
        // Print a new line at the end
        Console.WriteLine();
    }
}

 Output

B C D E F G H I J K L M N

Share this C# Exercise

More C# Practice Exercises of C# Basic Data Types Overview

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