You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
242 B

package solutions
import (
"fmt"
)
func PrintComb2() {
a := 0
b := 1
for a <= 98 {
b = a + 1
for b <= 99 {
fmt.Printf("%.2d %.2d", a, b)
if !(a == 98 && b == 99) {
fmt.Print(", ")
}
b++
}
a++
}
fmt.Println()
}