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.
748 B
748 B
printcomb2
Instructions
Écrire une fonction qui affiche sur une seule ligne dans l'ordre croissant toutes les combinaisons possibles de deux nombres différents à deux chiffres.
Les combinaisons sont séparées par une virgule et un espace.
Fonction attendue
func PrintComb2() {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import piscine ".."
func main() {
piscine.PrintComb2()
}
Voici la sortie tronquée :
student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test | cat -e
00 01, 00 02, 00 03, ..., 00 98, 00 99, 01 02, 01 03, ..., 97 98, 97 99, 98 99$
student@ubuntu:~/piscine-go/test$