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.
28 lines
329 B
28 lines
329 B
package main |
|
|
|
import ( |
|
"fmt" |
|
|
|
"./student" |
|
) |
|
|
|
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() |
|
} |
|
|
|
func main() { |
|
lib.Challenge("PrintComb2", student.PrintComb2, printComb2) |
|
}
|
|
|