Go Program to Print Rectangle Star Pattern

Write a Go Program to Print Rectangle Star Pattern. In this Golang Rectangle Star pattern example, the nested for loop iterates rectangle rows and columns and print stars. package main import “fmt” func main() { var i, j, row, col int fmt.Print(“Enter the Rectangle Rows = “) fmt.Scanln(&row) fmt.Print(“Enter the Rectangle Columns = “) fmt.Scanln(&col) … Read more