本文實例講述了Go語言計算指定年月天數(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
}
希望本文所述對大家的Go語言程序設(shè)計有所幫助。
您可能感興趣的文章:- Go語言計算兩個經(jīng)度和緯度之間距離的方法
- Golang記錄、計算函數(shù)執(zhí)行耗時、運行時間的一個簡單方法
- go語言計算兩個時間的時間差方法
- golang模板template自定義函數(shù)用法示例
- golang實現(xiàn)http服務(wù)器處理靜態(tài)文件示例
- golang簡單位運算示例
- golang解析xml的方法
- golang的HTTP基本認證機制實例詳解
- golang簡單tls協(xié)議用法完整示例
- golang與php實現(xiàn)計算兩個經(jīng)緯度之間距離的方法