forked from steger/pr3-ws202526
constants
parent
1b4be46e08
commit
3064e116cb
|
|
@ -0,0 +1,21 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"math"
|
||||
)
|
||||
|
||||
const s string = "constant"
|
||||
|
||||
func main() {
|
||||
fmt.Println(s)
|
||||
|
||||
const n = 500000000
|
||||
|
||||
const d = 3e20 / n
|
||||
fmt.Println(d)
|
||||
|
||||
fmt.Println(int64(d))
|
||||
|
||||
fmt.Println(math.Sin(n))
|
||||
}
|
||||
Loading…
Reference in New Issue