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.
 
 
 
 
 
 

682 B

displayz

Instructions

Écrire un programme qui prend une string, et qui affiche le premier caractère z qu'il trouve dedans, suivi par un retour à la ligne ('\n'). Si il n'y a pas de caractère z dans la string, le programme affiche juste un z suivi d'un retour à la ligne ('\n'). Si le nombre de paramètres n'est pas 1, le programme affiche un z suivi d'un retour à la ligne ('\n').

Utilisation

student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test "xyz"
z
student@ubuntu:~/piscine-go/test$ ./test "bcvbvZ"
z
student@ubuntu:~/piscine-go/test$ ./test "nbv"
z
student@ubuntu:~/piscine-go/test$ ./test