Showing posts with label Find the Day of the Week Using Functions in Golang. Show all posts
Showing posts with label Find the Day of the Week Using Functions in Golang. Show all posts

Thursday, August 1, 2019

Find the Day of the Week Using Functions in Golang

Design a program that will ask the user to print the day name of the week using function using Golang.

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


/* days.go
Authors
Mr. Jake R. Pomperada
Mr. Rollyn M.  Moises
Mr. Sunday Vince V. Latergo
Date : July 25, 2019  Thursday  4:32 PM
 */
package main

import "fmt"

func days_week (day int) int {
if day == 1 {
fmt.Print("\n");
fmt.Print("\tThe given day is Monday.");
} else if day == 2 {
fmt.Print("\n");
fmt.Print("\tThe given day is Tuesday.");
} else if day == 3 {
fmt.Print("\n");
fmt.Print("\tThe given day is Wednesday.");
} else if day == 4 {
fmt.Print("\n");
fmt.Print("\tThe given day is Thursday.");
} else if day == 5 {
fmt.Print("\n");
fmt.Print("\tThe given day is Friday.");
} else if day == 6 {
fmt.Print("\n");
fmt.Print("\tThe given day is Saturday.");
} else if day == 7 {
fmt.Print("\n");
fmt.Print("\tThe given day is Sunday.");
} else {
fmt.Print("\n");
fmt.Print("\tInvalid Input! Please enter day in between 1-7.");
}
  return 0
}

func main() {
var day int
fmt.Print("\n")
fmt.Print("\tFind the Day of the Week Using Functions")
fmt.Print("\n\n")
fmt.Print("\tEnter Day Number (1-7) : ")
fmt.Scan(&day)

days_week(day)

fmt.Print("\n\n")
fmt.Print("\tEnd of Program")
fmt.Print("\n")
}