Go Program to Print Right Triangle of Same Column Numbers

Write a Go program to print the right triangle of same column numbers in each row using for loop.

package main

import "fmt"

func main() {

	var i, j, row int

	fmt.Print("Enter Right Triangle of Same Col Num Rows = ")
	fmt.Scanln(&row)

	fmt.Println("Right Triangle of Same Column Numbers Pattern")

	for i = 1; i <= row; i++ {
		for j = 1; j <= i; j++ {
			fmt.Printf("%d ", i)
		}
		fmt.Println()
	}
}
Go Program to Print Right Triangle of Same Column Numbers

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.