-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.go
72 lines (58 loc) · 1.2 KB
/
calculator.go
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"strings"
)
type calc struct{}
func (c calc) operate(input string, operation string) (int, error) {
cleanInput := strings.Split(input, operation)
first, err := c.parseString(cleanInput[0])
if err != nil {
return 0, err
}
second, err := c.parseString(cleanInput[1])
if err != nil {
return 0, err
}
switch operation {
case "+":
return first + second, nil
case "-":
return first - second, nil
case "*":
return first * second, nil
case "/":
return first / second, nil
default:
fmt.Println("Invalid operator")
return 0, nil
}
}
func (calc) parseString(operator string) (int, error) {
result, _ := strconv.Atoi(operator)
return result, nil
}
func readInput() string {
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
return scanner.Text()
}
func main() {
fmt.Println("Enter your input:")
input := readInput()
fmt.Println("Enter your operation:")
operator := readInput()
processResult(input, operator)
}
func processResult(input string, operator string) {
c := calc{}
value, err := c.operate(input, operator)
if err != nil {
fmt.Println(err)
} else {
fmt.Println("Result of:", input, "equals to", value)
}
}