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.
1.4 KiB
1.4 KiB
raid1d
Instructions
Écrire une fonction Raid1d
qui affiche un rectangle valide de largeur x
et de hauteur y
.
Cette fonction doit dessiner les rectangles comme sur les examples.
Fonction attendue
func Raid1d(x,y int) {
}
Utilisation
Voici d'éventuels programmes pour tester votre fonction :
Programme #1
package main
import (
student "./student"
)
func main() {
student.Raid1d(5,3)
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
ABBBC
B B
ABBBC
student@ubuntu:~/[[ROOT]]/test$
Programme #2
package main
import (
student "./student"
)
func main() {
student.Raid1d(5,1)
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
ABBBC
student@ubuntu:~/[[ROOT]]/test$
Programme #3
package main
import (
student "./student"
)
func main() {
student.Raid1d(1,1)
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
A
student@ubuntu:~/[[ROOT]]/test$
Programme #4
package main
import (
student "./student"
)
func main() {
student.Raid1d(1,5)
}
Et son résultat :
student@ubuntu:~/[[ROOT]]/test$ go build
student@ubuntu:~/[[ROOT]]/test$ ./test
A
B
B
B
A
student@ubuntu:~/[[ROOT]]/test$