本文實(shí)例講述了Go語(yǔ)言計(jì)算指定年月天數(shù)的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
復(fù)制代碼 代碼如下:
package main
import (
"fmt"
"bufio"
"os"
"regexp"
"strconv"
)
func main() {
year := input("year", "^[0-9]{1}[0-9]{3}$")
month := input("month", "^(0{1}[0-9]{1}|1{1}[0-2]{1})$")
count(year, month)
fmt.Println("Press Enter button to continue ...")
reader := bufio.NewReader(os.Stdin)
lastInput, _, err := reader.ReadRune()
if err != nil {
fmt.Fprintln(os.Stderr, "Occur error when input (last) '", lastInput, "':", err)
}
return
}
func count(year int, month int) (days int) {
if month != 2 {
if month == 4 || month == 6 || month == 9 || month == 11 {
days = 30
} else {
days = 31
fmt.Fprintln(os.Stdout, "The month has 31 days");
}
} else {
if (((year % 4) == 0 (year % 100) != 0) || (year % 400) == 0) {
days = 29
} else {
days = 28
}
}
fmt.Fprintf(os.Stdout, "The %d-%d has %d days.\n", year, month, days)
return
}
func input(name string, regexpText string) (number int) {
var validNumber = false
for !validNumber {
fmt.Println("Please input a", name, ": ")
reader := bufio.NewReader(os.Stdin)
inputBytes, _, err := reader.ReadLine()
if err != nil {
fmt.Fprintln(os.Stderr, "Occur error when input", name, ":", err)
continue
}
inputText := string(inputBytes)
validNumber, err = regexp.MatchString(regexpText, inputText)
if err != nil {
fmt.Fprintln(os.Stderr, "Occur error when match", name, "(", inputText, "):",err)
continue
}
if validNumber {
number, err = strconv.Atoi(inputText)
if err != nil {
fmt.Fprintln(os.Stderr, "Occur error when convert", name, "(", inputText, "):", err)
continue
}
} else {
fmt.Fprintln(os.Stdout, "The", name, "(", inputText, ") does not have the correct format!")
}
}
fmt.Println("The input", name, ": ", number)
return
}
希望本文所述對(duì)大家的Go語(yǔ)言程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- Go語(yǔ)言計(jì)算兩個(gè)經(jīng)度和緯度之間距離的方法
- Golang記錄、計(jì)算函數(shù)執(zhí)行耗時(shí)、運(yùn)行時(shí)間的一個(gè)簡(jiǎn)單方法
- go語(yǔ)言計(jì)算兩個(gè)時(shí)間的時(shí)間差方法
- golang模板template自定義函數(shù)用法示例
- golang實(shí)現(xiàn)http服務(wù)器處理靜態(tài)文件示例
- golang簡(jiǎn)單位運(yùn)算示例
- golang解析xml的方法
- golang的HTTP基本認(rèn)證機(jī)制實(shí)例詳解
- golang簡(jiǎn)單tls協(xié)議用法完整示例
- golang與php實(shí)現(xiàn)計(jì)算兩個(gè)經(jīng)緯度之間距離的方法