Go Program to Print Hollow Mirrored Rhombus Star Pattern

Write a Go program to print the hollow mirrored rhombus star pattern using for loop. 

package main

import "fmt"

func main() {

	var i, j, k, row int

	fmt.Print("Enter Hollow Mirrored Rhombus Pattern Rows = ")
	fmt.Scanln(&row)

	fmt.Println("Hollow Mirrored Rhombus Star Pattern")

	for i = 1; i <= row; i++ {
		for j = 1; j < i; j++ {
			fmt.Printf("  ")
		}
		for k = 1; k <= row; k++ {
			if i == 1 || i == row || k == 1 || k == row {
				fmt.Printf("* ")
			} else {
				fmt.Printf("  ")
			}
		}
		fmt.Println()
	}
}
Go Program to Print Hollow Mirrored Rhombus Star Pattern

This Go example prints the hollow mirrored rhombus pattern of a given character.

package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {

	reader := bufio.NewReader(os.Stdin)

	var i, j, k, row int

	fmt.Print("Enter Hollow Mirrored Rhombus Pattern Rows = ")
	fmt.Scanln(&row)

	fmt.Print("Character to Print in Hollow Mirrored Rhombus = ")
	ch, _, _ := reader.ReadRune()

	fmt.Println("Hollow Mirrored Rhombus Pattern")

	for i = 1; i <= row; i++ {
		for j = 1; j < i; j++ {
			fmt.Printf("  ")
		}
		for k = 1; k <= row; k++ {
			if i == 1 || i == row || k == 1 || k == row {
				fmt.Printf("%c ", ch)
			} else {
				fmt.Printf("  ")
			}
		}
		fmt.Println()
	}
}
Enter Hollow Mirrored Rhombus Pattern Rows = 14
Character to Print in Hollow Mirrored Rhombus = #
Hollow Mirrored Rhombus Pattern
# # # # # # # # # # # # # # 
  #                         # 
    #                         # 
      #                         # 
        #                         # 
          #                         # 
            #                         # 
              #                         # 
                #                         # 
                  #                         # 
                    #                         # 
                      #                         # 
                        #                         # 
                          # # # # # # # # # # # # # # 

About Suresh

Suresh is the founder of TutorialGateway and a freelance software developer. He specialized in Designing and Developing Windows and Web applications. The experience he gained in Programming and BI integration, and reporting tools translates into this blog. You can find him on Facebook or Twitter.