You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
239 B
Go
14 lines
239 B
Go
3 years ago
|
package basic
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"math"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func Test_EarthFn(t *testing.T) {
|
||
|
fmt.Println(HeightDistance(10000))
|
||
|
//近似算法,差距在接受范围内?
|
||
|
fmt.Println(math.Sqrt(((EARTH_AVERAGE_RADIUS)*2 + 10000) * 10000))
|
||
|
}
|