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.
734 B
734 B
searchreplace
Instructions
Écrire un programme qui prends 3 arguments, le premier argument est une string
dans laquelle une lettre (le 2éme argument) est remplacée par une autre (3éme argument).
-
Si le nombre d'aruments n'est pas 3, le programme affiche un newline(
'\n'
). -
Si le second argument n'est pas contenu dans le premier (la
string
) alors le programme réécris lastring
suivi d'un newline('\n'
).
Utilisation
student@ubuntu:~/piscine/test$ go build
student@ubuntu:~/piscine/test$ ./test "hella there" "a" "o"
hello there
student@ubuntu:~/piscine/test$ ./test "abcd" "z" "l"
abcd
student@ubuntu:~/piscine/test$ ./test "something" "a" "o" "b" "c"
student@ubuntu:~/piscine/test$