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