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.
|
|
|
## reversebits
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Écrire un programme qui prend un `byte`, qui l'inverse `bit` par `bit` (comme montré sur l'exemple) et qui affiche le résultat.
|
|
|
|
|
|
|
|
### Utilisation
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/piscine-go/reversebits$ go build
|
|
|
|
student@ubuntu:~/piscine-go/reversebits$ ./reversebits
|
|
|
|
Not enough arguments.
|
|
|
|
student@ubuntu:~/piscine-go/reversebits$ ./reversebits 00100110 | cat -e
|
|
|
|
01100100$
|
|
|
|
student@ubuntu:~/piscine-go/reversebits$ ./reversebits "djs"
|
|
|
|
The argument "djs" does not represent a byte
|
|
|
|
student@ubuntu:~/piscine-go/reversebits$ ./reversebits "0102039s" | cat -e
|
|
|
|
The argument "0102039s" does not represent a byte$
|
|
|
|
student@ubuntu:~/piscine-go/reversebits$
|
|
|
|
```
|