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