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

raid1a

Instructions

Écrire une fonction Raid1a qui affiche un carré valide de largeur x et de hauteur y.

Cette fonction doit dessiner les carrés comme sur les examples.

Fonction attendue

func Raid1a(x,y int) {

}

Utilisation

Voici d'éventuels programmes pour tester votre fonction :

Programme #1

package main

import (
	"fmt"
	student "./student"
)

func main() {
	student.Raid1a(5,3)
}

Et son résultat :

student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
o---o
|   |
o---o
student@ubuntu:~/piscine-go/test$

Programme #2

package main

import (
	"fmt"
	student "./student"
)

func main() {
	student.Raid1a(5,1)
}

Et son résultat :

student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
o---o
student@ubuntu:~/piscine-go/test$

Programme #3

package main

import (
	"fmt"
	student "./student"
)

func main() {
	student.Raid1a(1,1)
}

Et son résultat :

student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
o
student@ubuntu:~/piscine-go/test$

Programme #4

package main

import (
	"fmt"
	student "./student"
)

func main() {
	student.Raid1a(1,5)
}

Et son résultat :

student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
o
|
|
|
o
student@ubuntu:~/piscine-go/test$