|
|
|
# quadrangle
|
|
|
|
|
|
|
|
## quadA
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function `QuadA` that prints a **valid** rectangle of width `x` and of height `y`.
|
|
|
|
|
|
|
|
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 QuadA(x,y int) {
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here are possible programs to test your function :
|
|
|
|
|
|
|
|
Program #1
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadA(5,3)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
o---o
|
|
|
|
| |
|
|
|
|
o---o
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #2
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadA(5,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
o---o
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #3
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadA(1,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
o
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #4
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadA(1,5)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
o
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
o
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
|
|
## quadB
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function `QuadB` that prints a **valid** rectangle of width `x` and of height `y`.
|
|
|
|
|
|
|
|
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 QuadB(x,y int) {
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here are possible programs to test your function :
|
|
|
|
|
|
|
|
Program #1
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadB(5,3)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
/***\
|
|
|
|
* *
|
|
|
|
\***/
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #2
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadB(5,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
/***\
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #3
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadB(1,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
/
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #4
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadB(1,5)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
/
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
\
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
|
|
## quadC
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function `QuadC` that prints a **valid** rectangle of width `x` and of height `y`.
|
|
|
|
|
|
|
|
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 QuadC(x,y int) {
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here are possible programs to test your function :
|
|
|
|
|
|
|
|
Program #1
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadC(5,3)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
ABBBA
|
|
|
|
B B
|
|
|
|
CBBBC
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #2
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadC(5,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
ABBBA
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #3
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadC(1,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
A
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #4
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadC(1,5)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
A
|
|
|
|
B
|
|
|
|
B
|
|
|
|
B
|
|
|
|
C
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
|
|
## quadD
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function `QuadD` that prints a **valid** rectangle of width `x` and of height `y`.
|
|
|
|
|
|
|
|
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) {
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here are possible programs to test your function :
|
|
|
|
|
|
|
|
Program #1
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadD(5,3)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
ABBBC
|
|
|
|
B B
|
|
|
|
ABBBC
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #2
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadD(5,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
ABBBC
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #3
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadD(1,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
A
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #4
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadD(1,5)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
A
|
|
|
|
B
|
|
|
|
B
|
|
|
|
B
|
|
|
|
A
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
|
|
## quadE
|
|
|
|
|
|
|
|
### Instructions
|
|
|
|
|
|
|
|
Write a function `QuadE` that prints a **valid** rectangle of width `x` and of height `y`.
|
|
|
|
|
|
|
|
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 QuadE(x,y int) {
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
Here are possible programs to test your function :
|
|
|
|
|
|
|
|
Program #1
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadE(5,3)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
ABBBC
|
|
|
|
B B
|
|
|
|
CBBBA
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #2
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadE(5,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
ABBBC
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #3
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadE(1,1)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
A
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|
|
|
|
|
|
|
|
Program #4
|
|
|
|
|
|
|
|
```go
|
|
|
|
package main
|
|
|
|
|
|
|
|
import piscine ".."
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
piscine.QuadE(1,5)
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
And its output :
|
|
|
|
|
|
|
|
```console
|
|
|
|
student@ubuntu:~/quad/test$ go build
|
|
|
|
student@ubuntu:~/quad/test$ ./test
|
|
|
|
A
|
|
|
|
B
|
|
|
|
B
|
|
|
|
B
|
|
|
|
C
|
|
|
|
student@ubuntu:~/quad/test$
|
|
|
|
```
|