Group
C# Arrays, Structures and Strings
Objective
1. Ask the user to input their name.
2. Use a loop to display each part of the name starting from the first letter, and increase the length of the part displayed until the whole name is shown.
3. Ensure that the program correctly handles any input length and displays the name in a growing triangle pattern.
4. Print each part of the name in a new line.
Write a C# program to ask the user for his/her name and display a triangle with it, starting with 1 letter and growing until it has the full length:
Enter your name: Juan
J
Ju
Jua
Juan
Example C# Exercise
Show C# Code
using System;
class Program
{
static void Main()
{
// Ask the user for their name
Console.Write("Enter your name: ");
string name = Console.ReadLine();
// Loop through the string to print a growing triangle
for (int i = 1; i <= name.Length; i++)
{
// Print the first i characters of the name
Console.WriteLine(name.Substring(0, i));
}
}
}
Output
Enter your name: Juan
J
Ju
Jua
Juan