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.
112 lines
1.4 KiB
112 lines
1.4 KiB
4 years ago
|
## quadrangle
|
||
4 years ago
|
|
||
|
### Instructions
|
||
|
|
||
4 years ago
|
Write a function `QuadB` that prints a **valid** rectangle of width `x` and of height `y`.
|
||
4 years ago
|
|
||
|
The function must draw the rectangles as in the examples.
|
||
|
|
||
|
`x` and `y` will always be positive numbers. Otherwise, the function should print nothing.
|
||
|
|
||
|
### Expected function
|
||
|
|
||
|
```go
|
||
4 years ago
|
func QuadB(x,y int) {
|
||
|
|
||
4 years ago
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is are possible programs to test your function :
|
||
|
|
||
|
Program #1
|
||
|
|
||
|
```go
|
||
|
package main
|
||
4 years ago
|
|
||
4 years ago
|
import piscine ".."
|
||
4 years ago
|
|
||
4 years ago
|
func main() {
|
||
4 years ago
|
piscine.QuadB(5,3)
|
||
4 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
|
/***\
|
||
|
* *
|
||
|
\***/
|
||
|
student@ubuntu:~/[[ROOT]]/test$
|
||
|
```
|
||
|
|
||
|
Program #2
|
||
|
|
||
|
```go
|
||
|
package main
|
||
4 years ago
|
|
||
4 years ago
|
import piscine ".."
|
||
4 years ago
|
|
||
4 years ago
|
func main() {
|
||
4 years ago
|
piscine.QuadB(5,1)
|
||
4 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
|
/***\
|
||
|
student@ubuntu:~/[[ROOT]]/test$
|
||
|
```
|
||
|
|
||
|
Program #3
|
||
|
|
||
|
```go
|
||
|
package main
|
||
4 years ago
|
|
||
4 years ago
|
import piscine ".."
|
||
4 years ago
|
|
||
4 years ago
|
func main() {
|
||
4 years ago
|
piscine.QuadB(1,1)
|
||
4 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
|
/
|
||
|
student@ubuntu:~/[[ROOT]]/test$
|
||
|
```
|
||
|
|
||
|
Program #4
|
||
|
|
||
|
```go
|
||
|
package main
|
||
4 years ago
|
|
||
4 years ago
|
import piscine ".."
|
||
4 years ago
|
|
||
4 years ago
|
func main() {
|
||
4 years ago
|
piscine.QuadB(1,5)
|
||
4 years ago
|
}
|
||
|
```
|
||
|
|
||
|
And its output :
|
||
|
|
||
|
```console
|
||
|
student@ubuntu:~/[[ROOT]]/test$ go build
|
||
|
student@ubuntu:~/[[ROOT]]/test$ ./test
|
||
|
/
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
\
|
||
|
student@ubuntu:~/[[ROOT]]/test$
|
||
|
```
|