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.
21 lines
614 B
21 lines
614 B
6 years ago
|
## displayz
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
Write a program that takes a `string`, and displays the first `z` character it encounters in it, followed by a newline (`'\n'`).
|
||
|
If there are no `z` characters in the string, the program just writes `z` followed by a newline (`'\n'`).
|
||
5 years ago
|
If the number of arguments is not 1, the program displays an `z` followed by a newline (`'\n'`).
|
||
6 years ago
|
|
||
5 years ago
|
### Usage
|
||
6 years ago
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test "xyz"
|
||
6 years ago
|
z
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ ./test "bcvbvZ"
|
||
6 years ago
|
z
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ ./test "nbv"
|
||
6 years ago
|
z
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
6 years ago
|
```
|