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.
1.2 KiB
1.2 KiB
putnbrbase
Instructions
Écrire une fonction qui affiche un int
dans une base en string
passés en paramètres.
Si la base n'est pas valide, la fonction affiche NV
(Not Valid):
Règles de validité d'une base :
- Une base doit contenir au moins 2 caractères.
- Chaque caractère d'une base doit être unique.
- Une base ne doit pas contenir les caractères
+
ou-
.
La fonction doit gérer les nombres négatifs (comme montré sur l'exemple).
Fonction attendue
func PrintNbrBase(nbr int, base string) {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import (
"fmt"
"github.com/01-edu/z01"
piscine ".."
)
func main() {
piscine.PrintNbrBase(125, "0123456789")
z01.PrintRune('\n')
piscine.PrintNbrBase(-125, "01")
z01.PrintRune('\n')
piscine.PrintNbrBase(125, "0123456789ABCDEF")
z01.PrintRune('\n')
piscine.PrintNbrBase(-125, "choumi")
z01.PrintRune('\n')
piscine.PrintNbrBase(125, "aa")
z01.PrintRune('\n')
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
125
-1111101
7D
-uoi
NV
student@ubuntu:~/[[ROOT]]/test$