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.
25 lines
805 B
25 lines
805 B
5 years ago
|
## capitalizeprog
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Écrire un programme qui met en majuscule la première lettre de chaque mot et en minuscule les autres lettres du reste du mot d'une `string`.
|
||
|
|
||
|
- Un mot est une suite de caractères **alphanumériques**.
|
||
|
|
||
|
- Si il y a plus d'un argument le programme doit afficher `Too many arguments`.
|
||
|
|
||
|
- Si il n'y a pas d'arguments le programme doit afficher un newline ("`\n`").
|
||
|
|
||
|
### Utilisation :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/capitalizeprog$ go build
|
||
|
student@ubuntu:~/capitalizeprog$ ./capitalizeprog "Hello! How are you? How+are+things+4you?" | cat -e
|
||
|
Hello! How Are You? How+Are+Things+4you?$
|
||
|
student@ubuntu:~/capitalizeprog$ ./capitalizeprog Hello! How are you? | cat -e
|
||
|
Too many arguments$
|
||
|
student@ubuntu:~/capitalizeprog$ ./capitalizeprog
|
||
|
|
||
|
student@ubuntu:~/capitalizeprog$
|
||
|
```
|