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.
632 B
632 B
printnbr
Instructions
Écrire une fonction qui affiche un int
passé en paramètre.
Toutes les valeurs de type int
doivent être affichables.
Vous ne pouvez pas convertir en int64
.
Fonction attendue
func PrintNbr(n int) {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import piscine ".."
func main() {
piscine.PrintNbr(-123)
piscine.PrintNbr(0)
piscine.PrintNbr(123)
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
-1230123
student@ubuntu:~/[[ROOT]]/test$