Group
C# Basic Data Types Overview
Objective
Write a C# program that prompts for a symbol and a width, and displays a triangle of that width, using that symbol for the inner pattern.
Example C# Exercise
Show C# Code
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
*******
******
*****
****
***
**
*