47 lines
783 B
Go
47 lines
783 B
Go
// For more tutorials: https://blog.learngoprogramming.com
|
|
//
|
|
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strconv"
|
|
)
|
|
|
|
func main() {
|
|
if len(os.Args) != 2 {
|
|
fmt.Println("Give me a year number")
|
|
return
|
|
}
|
|
|
|
year, err := strconv.Atoi(os.Args[1])
|
|
if err != nil {
|
|
fmt.Printf("%q is not a valid year.\n", os.Args[1])
|
|
return
|
|
}
|
|
|
|
// Notice that:
|
|
// I've intentionally created this solution as verbose
|
|
// as I can.
|
|
//
|
|
// See the next exercise.
|
|
|
|
var leap bool
|
|
if year%400 == 0 {
|
|
leap = true
|
|
} else if year%4 == 0 {
|
|
leap = true
|
|
}
|
|
|
|
if leap {
|
|
fmt.Printf("%d is a leap year.\n", year)
|
|
} else {
|
|
fmt.Printf("%d is not a leap year.\n", year)
|
|
}
|
|
}
|