mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-06 16:58:24 +08:00
10 lines
98 B
Go
10 lines
98 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(fmt.Sprintf("%v", float64(90)/100))
|
|
}
|