Grupo
Tipos de datos básicos de C#
Objectivo
Escriba un programa en C# que solicite un símbolo y un ancho, y muestre un triángulo de ese ancho, utilizando ese símbolo para el patrón interno.
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
class Program
{
static void Main()
{
// Ask the user for a symbol
Console.Write("Enter a symbol: ");
char symbol = Console.ReadKey().KeyChar;
Console.WriteLine(); // Move to the next line
// Ask the user for the desired width of the triangle
Console.Write("Enter the desired width: ");
int width = int.Parse(Console.ReadLine());
Console.WriteLine(); // Space before printing the triangle
// Loop to generate the inverted triangle
for (int i = width; i > 0; i--) // Decreasing rows
{
for (int j = 0; j < i; j++) // Print symbols in each row
{
Console.Write(symbol);
}
Console.WriteLine(); // Move to the next line
}
}
}
Output
//Example 1:
Enter a symbol: 4
Enter the desired width: 5
44444
4444
444
44
4
//Example 2:
Enter a symbol: *
Enter the desired width: 7
*******
******
*****
****
***
**
*
Código de ejemplo copiado
Comparte este ejercicio de C#