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
GO Program to Calculate Area of Rectangle and Square
GO supports the standard arithmetic operators: (Addition, Subtraction, Multiplication, Division,Remainder)
Program in Go language to print Pascal's Triangle
GO Program to Find the Largest Number Among Three Numbers
GO Hello World program
GO language program with an example of Hash Table