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.
26 lines
605 B
26 lines
605 B
6 years ago
|
## rot13
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
|
Write a program that takes a string and displays it, replacing each of its
|
||
|
letters by the letter 13 spaces ahead in alphabetical order.
|
||
|
|
||
|
- 'z' becomes 'm' and 'Z' becomes 'M'. Case remains unaffected.
|
||
|
|
||
|
- The output will be followed by a newline.
|
||
|
|
||
|
- If the number of arguments is not 1, the program displays a newline.
|
||
|
|
||
6 years ago
|
### Expected output
|
||
6 years ago
|
|
||
|
```console
|
||
|
student@ubuntu:~/piscine/test$ go build
|
||
|
student@ubuntu:~/piscine/test$ ./test "abc"
|
||
|
nop
|
||
|
student@ubuntu:~/piscine/test$ ./test "hello there"
|
||
|
uryyb gurer
|
||
|
student@ubuntu:~/piscine/test$ ./test
|
||
|
|
||
6 years ago
|
student@ubuntu:~/piscine/test$
|
||
|
```
|