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.
 
 
 
 
 
Tiago Collot a420b1f6d5 fix(rockandroll): miss import piscine and add second # to the title 2 years ago
..
README.md fix(rockandroll): miss import piscine and add second # to the title 2 years ago

README.md

rockandroll

Instructions

Write a function called RockAndRoll() that takes an int and returns a string.

  • If the number is divisible by 2, print rock followed by a newline \n.
  • If the number is divisible by 3, print roll followed by a newline \n.
  • If the number is divisible by 2 and 3, print rock and roll followed by a newline \n.

Expected function

func RockAndRoll(n int) string {

}

Usage

Here is a possible program to test your function:

package main

import (
  "fmt"
  "piscine"
)

func main() {
  fmt.Println(piscine.RockAndRoll(4))
  fmt.Println(piscine.RockAndRoll(9))
  fmt.Println(piscine.RockAndRoll(6))
}

And its output:

rock$
$
roll$
$
rock and roll$
$