Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 142 Bytes

HJ7取近似值.md

File metadata and controls

14 lines (11 loc) · 142 Bytes
package main

import (
	"fmt"
)

func main() {
	var n float64
	fmt.Scan(&n)
	fmt.Println(int(n + 0.5)) // 或者math.Floor(n+0.5)
}