Browse Source

Adding of a new exercise printreversealphabetg.

The goal: printing the alphabet in lowercase from g to a.
content-update
Christopher Fremond 4 years ago committed by xpetit
parent
commit
88d28d3ee0
  1. 7
      go/tests/prog/printreversealphabetg_prog/main.go
  2. 9
      go/tests/prog/printreversealphabetg_test/main.go
  3. 18
      subjects/printreversealphabetg/README.md

7
go/tests/prog/printreversealphabetg_prog/main.go

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("gfedcba")
}

9
go/tests/prog/printreversealphabetg_test/main.go

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

18
subjects/printreversealphabetg/README.md

@ -0,0 +1,18 @@
## printreversealphabetg
### Instructions
Write a program that prints the Latin alphabet in lowercase in reverse order (from `'g'` to `'a'`) 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]]/printreversealphabetg$ go build
student@ubuntu:~/[[ROOT]]/printreversealphabetg$ ./printreversealphabetg
gfedcba
student@ubuntu:~/[[ROOT]]/printreversealphabetg$
```
Loading…
Cancel
Save