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.
25 lines
329 B
25 lines
329 B
package main |
|
|
|
import ( |
|
"fmt" |
|
|
|
student "student" |
|
|
|
"lib" |
|
) |
|
|
|
func printComb2() { |
|
for a := 0; a <= 98; a++ { |
|
for b := a + 1; b <= 99; b++ { |
|
fmt.Printf("%.2d %.2d", a, b) |
|
if a != 98 || b != 99 { |
|
fmt.Print(", ") |
|
} |
|
} |
|
} |
|
fmt.Println() |
|
} |
|
|
|
func main() { |
|
lib.Challenge("PrintComb2", student.PrintComb2, printComb2) |
|
}
|
|
|