mirror of https://github.com/01-edu/public.git
2 changed files with 30 additions and 6 deletions
@ -0,0 +1,24 @@ |
|||||||
|
## splitprog |
||||||
|
|
||||||
|
### Instructions |
||||||
|
|
||||||
|
Écrire une fonction qui sépare les mots d'une `string`, qui les met dans un tableau de `string` et qui les affichent sur la sortie standard. |
||||||
|
|
||||||
|
Le programme reçoit deux paramètres: |
||||||
|
|
||||||
|
- Le premier est la `string` |
||||||
|
- Le deuxième est le séparateur |
||||||
|
|
||||||
|
### Expected output : |
||||||
|
|
||||||
|
```console |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ go build |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ ./splitprog "HelloHAhowHAareHAyou?" HA | cat -e |
||||||
|
[Hello how are you?]$ |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ ./splitprog "Hello,how,are,you?" "," |
||||||
|
[Hello how are you?] |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ ./splitprog "HelloHAhowHAareHAyou?" |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ ./splitprog |
||||||
|
student@ubuntu:~/piscine-go/splitprog$ |
||||||
|
``` |
Loading…
Reference in new issue