Browse Source

Adding of a new exercise printalphabetalt2.

The goal: printing the alphabet in reverse order alternatively in uppercase and in lowercase from Z to a, and then from A to z.
content-update
Christopher Fremond 4 years ago committed by xpetit
parent
commit
7c7732b418
  1. 8
      go/tests/prog/printreversealphabetalt2_prog/main.go
  2. 9
      go/tests/prog/printreversealphabetalt2_test/main.go
  3. 22
      subjects/printreversealphabetalt2/README.md

8
go/tests/prog/printreversealphabetalt2_prog/main.go

@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
fmt.Println("ZyXwVuTsRqPoNmLkJiHgFeDcBa")
fmt.Println("AbCdEfGhIjKlMnOpQrStUvWxYz")
}

9
go/tests/prog/printreversealphabetalt2_test/main.go

@ -0,0 +1,9 @@
package main
import (
"lib"
)
func main() {
lib.ChallengeMain("printreversealphabetalt2")
}

22
subjects/printreversealphabetalt2/README.md

@ -0,0 +1,22 @@
## printreversealphabetalt2
### Instructions
Write a program that:
- first prints the Latin alphabet alternatively in uppercase and lowercase in reverse order (from `'Z'` to `'a'`) on a single line.
- second prints the Latin alphabet alternatively in uppercase and lowercase in order (from `'A'` to `'z'`) on a single line.
A line is a sequence of characters preceding the [end of line](https://en.wikipedia.org/wiki/Newline) character (`'\n'`).
Please note that `casting` is not allowed for this exercise!
### Usage
```console
student@ubuntu:~/[[ROOT]]/printreversealphabetalt2$ go build
student@ubuntu:~/[[ROOT]]/printreversealphabetalt2$ ./printreversealphabetalt2
ZyXwVuTsRqPoNmLkJiHgFeDcBa
AbCdEfGhIjKlMnOpQrStUvWxYz
student@ubuntu:~/[[ROOT]]/printreversealphabetalt2$
```
Loading…
Cancel
Save