Ejercicio
Triángulo V2
Objetivo
Escriba un programa de C# para pedirle al usuario su nombre y muestre un triángulo con él, comenzando con 1 letra y creciendo hasta que tenga la longitud completa:
Introduce tu nombre: Juan
J
Ju
Jua
Juan
Código de Ejemplo
using System; // Import the System namespace for basic functionality
class Program // Define the main class
{
static void Main() // The entry point of the program
{
// Ask the user for their name
Console.Write("Enter your name: ");
string name = Console.ReadLine(); // Read the user's input as a string
// Loop to display the triangle, growing the string one character at a time
for (int i = 1; i <= name.Length; i++)
{
Console.WriteLine(name.Substring(0, i)); // Display the substring from the start to the i-th character
}
}
}