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