Go Program to Print Left Arrow Star Pattern

Write a Go program to print the left arrow star pattern using for loop. 

package main

import "fmt"

func main() {

	var i, j, k, row int

	fmt.Print("Enter Left Arrow Star Pattern row = ")
	fmt.Scanln(&row)

	fmt.Println("Left Arrow Star Pattern")

	for i = 1; i <= row; i++ {
		for j = 1; j <= row-i; j++ {
			fmt.Printf(" ")
		}
		for k = i; k <= row; k++ {
			fmt.Printf("*")
		}
		fmt.Println()
	}

	for i = 1; i < row; i++ {
		for j = 0; j < i; j++ {
			fmt.Printf(" ")
		}
		for k = 0; k <= i; k++ {
			fmt.Printf("*")
		}
		fmt.Println()
	}
}
Go Program to Print Left Arrow Star Pattern

This Go example prints the left arrow 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 Left Arrow Star Pattern row = ")
	fmt.Scanln(&row)

	fmt.Print("Character to Print in Left Arrow = ")
	ch, _, _ := reader.ReadRune()

	fmt.Println("Left Arrow Star Pattern")

	for i = 1; i <= row; i++ {
		for j = 1; j <= row-i; j++ {
			fmt.Printf(" ")
		}
		for k = i; k <= row; k++ {
			fmt.Printf("%c", ch)
		}
		fmt.Println()
	}

	for i = 1; i < row; i++ {
		for j = 0; j < i; j++ {
			fmt.Printf(" ")
		}
		for k = 0; k <= i; k++ {
			fmt.Printf("%c", ch)
		}
		fmt.Println()
	}
}
Enter Left Arrow Star Pattern row = 12
Character to Print in Left Arrow = $
Left Arrow Star 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.