Program in Go language to print Floyd's Triangle
Simple program using Print, Printf and Println statements to print Floyd's Triangle up to N number of rows entered by user.
Example
// Golang Program to Print Floyd's Triangle.
package main
import "fmt"
func main(){
var rows int
var temp int = 1
fmt.Print("Enter number of rows : ")
fmt.Scan(&rows)
for i := 1; i <= rows; i++ {
for k := 1; k <= i; k++ {
fmt.Printf(" %d",temp)
temp++
}
fmt.Println("")
}
}
Output
Enter number of rows : 5
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15
Most Helpful This Week
Undefined reference to <variable/function> error in Golang
Example of Sscan vs Sscanf vs Sscanln from FMT Package
GO language program with example of String Compare function
Example: How to use ReadFull from IO Package in Golang?
Golang program to implement Binary Tree
Comparing Structs with the Different Values Assigned to Data Fields