mirror of https://github.com/01-edu/public.git
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.
23 lines
242 B
23 lines
242 B
5 years ago
|
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()
|
||
|
}
|