Saturday, January 5, 2019

Leap Year Checker in Go

Happy New Year 2019 it has been a while since I wrote a code in my blog in this article I would like to share with you another sample program that I wrote using Go programming language to check if the given year is a leap year or not a leap year.

I am currently accepting programming work, it projects, school and application development.

programming projects, thesis and capstone projects, IT consulting.

work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com



Sample Program Output

Program Listing


// leap_year.go

package main

import "fmt"

func main(){
    var year int32
    fmt.Print("\n")
    fmt.Print("\tLeap Year Checker")
    fmt.Print("\n\n")
    fmt.Print("\tGive a Year : ")
    fmt.Scanln(&year)
    if(((year % 4 == 0) && (year % 100 !=0)) || (year % 400==0)) {
       fmt.Print("\n")
       fmt.Print("\tThe given year ")
       fmt.Printf("%d",year)
       fmt.Print(" is a LEAP year.")
    } else {
       fmt.Print("\n")
       fmt.Print("\tThe given year ")
       fmt.Printf("%d",year)
       fmt.Print(" is NOT a LEAP year.")
    }
    fmt.Print("\n\n")
    fmt.Print("\tEnd of Program")
    fmt.Print("\n")
}







No comments:

Post a Comment