Golang program to add given number of days to the specified date

Here, we are going to learn how to add given number of days to the specified date in Golang (Go Language)?
Submitted by Nidhi, on March 22, 2021 [Last updated : March 04, 2023]

Adding the number of days to the specified date in Golang

Problem Solution:

In this program, we will create a date and then add the number of days to the specified date using Add() function and print the updated date on the console screen.

Program/Source Code:

The source code to add given number of days to a specified date is given below. The given program is compiled and executed successfully.

Golang code to add given number of days to the specified date

// Golang program to add given number of days
// to the specified date

package main

import "fmt"
import "time"

func main() {
	date := time.Date(2020, 2, 5, 10, 5, 20, 0, time.UTC)

	res := date.Add(time.Hour * 24 * 15)
	fmt.Println("date after 15 days is: ", res)
}

Output:

date after 15 days is:  2020-02-20 10:05:20 +0000 UTC

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

In the main() function, we created a date object using Date() function. Then we added 15 days to the date using Add() function. After that, we printed the updated date on the console screen.

Golang Date & Time Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.