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.3 KiB

raid1b

Instructions

Write a function Raid1b that prints a valid square of width x and of height y.

The function must draw the squares as in the examples.

Expected function

func Raid1b(x,y int) {

}

Usage

Here is are possible programs to test your function :

Program #1

package main

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

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

And its output :

student@ubuntu:~/student/test$ go build
student@ubuntu:~/student/test$ ./test
/***\
*   *
\***/
student@ubuntu:~/student/test$

Program #2

package main

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

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

And its output :

student@ubuntu:~/student/test$ go build
student@ubuntu:~/student/test$ ./test
/***\
student@ubuntu:~/student/test$

Program #3

package main

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

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

And its output :

student@ubuntu:~/student/test$ go build
student@ubuntu:~/student/test$ ./test
/
student@ubuntu:~/student/test$

Program #4

package main

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

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

And its output :

student@ubuntu:~/student/test$ go build
student@ubuntu:~/student/test$ ./test
/
*
*
*
\
student@ubuntu:~/student/test$