Ejercicio
Cuadrado
Objetivo
Escriba un programa en Visual Basic que pida un número y un ancho, y muestre un cuadrado de ese ancho, usando ese número para el símbolo interno, como en este ejemplo:
Introduzca un número: 4
Introduzca el ancho deseado: 3
444
444
444
Código
' Importing necessary namespaces
Imports System
Public Class Program
Public Shared Sub Main()
' Declare variables for the number and width
Console.Write("Enter a number: ")
Dim number As Integer = Convert.ToInt32(Console.ReadLine()) ' Read the number from the user
Console.Write("Enter the desired width: ")
Dim width As Integer = Convert.ToInt32(Console.ReadLine()) ' Read the width from the user
' Loop to display the square with the given width
For i As Integer = 0 To width - 1
' Loop to display the number in each row
For j As Integer = 0 To width - 1
Console.Write(number) ' Print the number without a newline
Next
Console.WriteLine() ' Move to the next line after each row
Next
End Sub
End Class