-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.go
More file actions
58 lines (48 loc) · 835 Bytes
/
errors.go
File metadata and controls
58 lines (48 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package main
import (
"fmt"
"time"
"math"
)
type ErrNegativeSqrt float64
func (e ErrNegativeSqrt) Error() string {
return fmt.Sprintf("cannot Sqrt negative number: %v", float64(e))
}
type MyError struct {
When time.Time
What string
}
func (e *MyError) Error() string {
return fmt.Sprintf("at %v, %s",
e.When, e.What)
}
func run() error {
return &MyError{
time.Now(),
"it didn't work",
}
}
func Sqrt(x float64) (float64, error) {
if x < 0 {
return 0, ErrNegativeSqrt(x)
}
var (
z = 1.0
i int
)
for i = 0;; i++ {
prevZ := z
z -= (z * z - x) / (2 * z)
if math.Abs(prevZ - z) < 0.00000000001 {
break
}
}
return z, nil
}
func main() {
if err := run(); err != nil {
fmt.Println(err)
}
fmt.Println(Sqrt(2))
fmt.Println(Sqrt(-2))
}