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.

52 lines
1.1 KiB

2 years ago
## print-range
2 years ago
### Instructions
2 years ago
Write a function named `PrintRange` that takes a start and end number and prints all the numbers in that range.
- If the start number is greater than the end number, print the numbers in descending order.
- If the start number is less than the end number, print the numbers in ascending order.
- If the number is greater than `9` print just to `9`
- If the number is less than `0` print just to `0`
- If both numbers are less than `0` or greater than `9` print (`'\n'`)
- the output should be space-separated and (`'\n'`) at the end.
### Expected function
```go
2 years ago
func PrintRange(start, end int) {
// Your code here
}
```
2 years ago
### Usage
2 years ago
Here is a possible program to test your function:
```go
package main
import "piscine"
import "fmt"
func main() {
2 years ago
piscine.PrintRange(1, 10)
piscine.PrintRange(10, 1)
piscine.PrintRange(1, 1)
piscine.PrintRange(10, 10)
piscine.PrintRange(0, 9)
piscine.PrintRange(-1, -10)
}
```
2 years ago
and the output should be:
```console
$ go run . | cat -e
1 2 3 4 5 6 7 8 9$
9 8 7 6 5 4 3 2 1$
1$
$
0 1 2 3 4 5 6 7 8 9$
$
2 years ago
```