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.
49 lines
737 B
49 lines
737 B
6 years ago
|
## ultimatedivmod
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
5 years ago
|
- Write a function that will be formatted as below.
|
||
6 years ago
|
|
||
6 years ago
|
### Expected function
|
||
6 years ago
|
|
||
|
```go
|
||
|
func UltimateDivMod(a *int, b *int) {
|
||
|
|
||
|
}
|
||
|
```
|
||
|
|
||
5 years ago
|
- This function will divide the int **a** and **b**.
|
||
|
- The result of this division will be stored in the int pointed by **a**.
|
||
|
- The remainder of this division will be stored in the int pointed by **b**.
|
||
6 years ago
|
|
||
6 years ago
|
### Usage
|
||
6 years ago
|
|
||
5 years ago
|
Here is a possible program to test your function :
|
||
6 years ago
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
5 years ago
|
"fmt"
|
||
|
piscine ".."
|
||
6 years ago
|
)
|
||
|
|
||
|
func main() {
|
||
|
a := 13
|
||
|
b := 2
|
||
|
piscine.UltimateDivMod(&a, &b)
|
||
|
fmt.Println(a)
|
||
|
fmt.Println(b)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
6 years ago
|
6
|
||
|
1
|
||
5 years ago
|
student@ubuntu:~/[[ROOT]]/test$
|
||
6 years ago
|
```
|