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.

44 lines
633 B

5 years ago
## printnbr
5 years ago
### Instructions
Write a function that prints an `int` passed in parameter.
All possible values of type `int` have to go through.
You cannot convert to `int64`.
5 years ago
### Expected function
```go
func PrintNbr(n int) {
}
```
5 years ago
### Usage
Here is a possible program to test your function :
```go
package main
4 years ago
import (
piscine ".."
"github.com/01-edu/z01"
)
func main() {
piscine.PrintNbr(-123)
piscine.PrintNbr(0)
piscine.PrintNbr(123)
4 years ago
z01.PrintRune('\n')
}
```
And its output :
```console
student@ubuntu:~/printnbr/test$ go build
student@ubuntu:~/printnbr/test$ ./test
-1230123
student@ubuntu:~/printnbr/test$
```