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

## quadrangle
4 years ago
### Instructions
Write a function `QuadD` 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
func QuadD(x,y int) {
4 years ago
}
```
### Usage
Here is are possible programs to test your function :
Program #1
```go
package main
4 years ago
import piscine ".."
4 years ago
func main() {
piscine.QuadD(5,3)
4 years ago
}
```
And its output :
```console
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
ABBBC
B B
ABBBC
student@ubuntu:~/[[ROOT]]/test$
```
Program #2
```go
package main
4 years ago
import piscine ".."
4 years ago
func main() {
piscine.QuadD(5,1)
4 years ago
}
```
And its output :
```console
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
ABBBC
student@ubuntu:~/[[ROOT]]/test$
```
Program #3
```go
package main
4 years ago
import piscine ".."
4 years ago
func main() {
piscine.QuadD(1,1)
4 years ago
}
```
And its output :
```console
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
A
student@ubuntu:~/[[ROOT]]/test$
```
Program #4
```go
package main
4 years ago
import piscine ".."
4 years ago
func main() {
piscine.QuadD(1,5)
4 years ago
}
```
And its output :
```console
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
A
B
B
B
A
student@ubuntu:~/[[ROOT]]/test$
```