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
How do you read cookies in an HTTP request with an HTTP client in Go?
Golang program for implementation of Rabin-Karp
GO Program to Swap Number Without Using Temporary Variables
How to create Slice using Make function in Golang?
How do you read headers from an HTTP response with an HTTP client in Go?
10 Countries Paying Highest Salaries to Cybersecurity Professionals