Ejercicio
Triángulo
Objetivo
Escriba un programa en Visual Basic que solicite un símbolo y un ancho, y muestre un triángulo de ese ancho, usando ese número para el símbolo interior, como en este ejemplo:
Introduzca un símbolo: 4
Introduzca el ancho deseado: 5
44444
4444
444
44
4
Código
Imports System
Public Class exercise50
Public Shared Sub Main()
Console.Write("Enter a number: ")
Dim n As Integer = Convert.ToInt32(Console.ReadLine())
Console.Write("Enter the desired width: ")
Dim width As Integer = Convert.ToInt32(Console.ReadLine())
Dim height As Integer = width
For row As Integer = 0 To height - 1
For column As Integer = 0 To width - 1
Console.Write(n)
Next
Console.WriteLine()
width -= 1
Next
End Sub
End Class