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.

28 lines
850 B

## alphamirror
5 years ago
### Instructions
5 years ago
Write a program called `alphamirror` that takes a `string` as argument and displays this `string` after replacing each alphabetical character with the opposite alphabetical character.
The case of the letter stays the same, for example :
'a' becomes 'z', 'Z' becomes 'A'
'd' becomes 'w', 'M' becomes 'N'
5 years ago
The final result will be followed by a newline (`'\n'`).
5 years ago
If the number of arguments is different from 1, the program displays only a newline (`'\n'`).
### Usage
```console
5 years ago
student@ubuntu:~/piscine-go/alphamirror$ go build
student@ubuntu:~/piscine-go/alphamirror$ ./alphamirror "abc"
zyx
5 years ago
student@ubuntu:~/piscine-go/alphamirror$ ./alphamirror "My horse is Amazing." | cat -e
Nb slihv rh Znzarmt.$
5 years ago
student@ubuntu:~/piscine-go/alphamirror$ ./alphamirror | cat -e
$
5 years ago
student@ubuntu:~/piscine-go/alphamirror$
```