Golang Program to print numbers with diamond pattern
Example
package main
import "fmt"
func main() {
rows := 9
space := rows / 2
num := 1
for i := 1; i <= rows; i++ {
for j := 1; j <= space; j++ {
fmt.Printf(" ")
}
count := num/2 + 1
for k := 1; k <= num; k++ {
fmt.Printf("%d", count)
if k <= num/2 {
count--
} else {
count++
}
}
fmt.Println()
if i <= rows/2 {
space = space - 1
num = num + 2
} else {
space = space + 1
num = num - 2
}
}
}
Output
1
212
32123
4321234
543212345
4321234
32123
212
1
Most Helpful This Week
Find out how many logical processors used by current process
Golang Program to print Floyd's triangle
Web Application to read and write JSON data in JSON File
How append a slice to an existing slice in Golang?
How to change slice item value in Golang?
Golang program for implementation of Pancake Sort