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.
 
 
 
 
 
 
miguel 4974a86b84 docs(checkpoints-exercises): remove piscine imports 10 months ago
..
README.md docs(checkpoints-exercises): remove piscine imports 10 months ago

README.md

quarterofayear

Instructions

Write a function QuarterOfAYear() that takes an int, from 1 to 12, as an argument and returns an int with the respective quarter of the year to which it belongs.

  • If the number is not between 1 and 12 return -1.

Expected function

func QuarterOfAYear(month int) int {

}

Usage

Here is a possible program to test your function:

package main

import (
	"fmt"
)

func main() {
	fmt.Println(QuarterOfAYear(2))
	fmt.Println(QuarterOfAYear(5))
	fmt.Println(QuarterOfAYear(9))
	fmt.Println(QuarterOfAYear(11))
	fmt.Println(QuarterOfAYear(13))
	fmt.Println(QuarterOfAYear(-5))
}

And its output:

$ go run .
1
2
3
4
-1
-1