exam exercise readme for alphamirror

This commit is contained in:
Augusto 2019-04-19 10:35:48 +01:00 committed by Frenchris
parent f5487b2aa7
commit 3e2abce5ea
1 changed files with 28 additions and 0 deletions

28
subjects/alphamirror.md Normal file
View File

@ -0,0 +1,28 @@
# alphamirror
## Instructions
Write a program called alpha_mirror that takes a string and displays this string
after replacing each alphabetical character by the opposite alphabetical
character, followed by a newline.
'a' becomes 'z', 'Z' becomes 'A'
'd' becomes 'w', 'M' becomes 'N'
and so on.
Case is not changed.
If the number of arguments is not 1, display only a newline.
And its output :
```console
student@ubuntu:~/student/alphamirror$ go build
student@ubuntu:~/student/alphamirror$ ./alphamirror "abc"
zyx
student@ubuntu:~/student/alphamirror$ ./alphamirror "My horse is Amazing." | cat -e
Nb slihv rh Znzarmt.$
student@ubuntu:~/student/alphamirror$ ./alphamirror | cat -e
$
student@ubuntu:~/student/alphamirror$
```