-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.swift
More file actions
201 lines (166 loc) · 5.23 KB
/
ViewController.swift
File metadata and controls
201 lines (166 loc) · 5.23 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
//
// ViewController.swift
// calc.
//
// Created by Suchit on 26/06/17.
// Copyright © 2017 Suchit. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var operationLbl: UILabel!
@IBOutlet weak var resultLbl: UILabel!
enum Operation: String
{
case Divide = "/"
case Multiply = "*"
case Subtract = "-"
case Add = "+"
case Reminder = "%"
case Power = "^"
case Empty = "Empty"
}
var currentOperation = Operation.Empty
var runningNumber = ""
var leftHand = ""
var rightHand = ""
var result = ""
var operationLblHolder = ""
override func viewDidLoad() {
super.viewDidLoad()
}
@IBAction func numberPressed(sender: UIButton)
{
runningNumber += "\(sender.tag)"
operationLblHolder += "\(sender.tag)"
operationLbl.text = ""
operationLbl.text = operationLblHolder
}
@IBAction func dotPressed(sender: UIButton)
{
runningNumber += "."
operationLblHolder += "."
operationLbl.text = ""
operationLbl.text = operationLblHolder
}
@IBAction func backspacePressed(sender: UIButton)
{
if operationLblHolder == ""
{
operationLbl.text = "-0"
runningNumber = "-" + runningNumber
operationLblHolder = "-"
}
else if operationLblHolder == "-"
{
operationLbl.text = "0"
runningNumber = String(runningNumber.characters.dropFirst())
operationLblHolder = ""
}
else if operationLblHolder != "" && operationLblHolder != "-" && runningNumber != ""
{
if (Double)(runningNumber)! < 0
{
runningNumber = String(runningNumber.characters.dropFirst())
}
else
{
runningNumber = "-" + runningNumber
}
}
}
@IBAction func clearPressed(sender: UIButton)
{
currentOperation = Operation.Empty
runningNumber = ""
leftHand = ""
rightHand = ""
result = ""
operationLblHolder = ""
operationLbl.text = "0"
resultLbl.text = "0"
}
@IBAction func onDividePressed(sender: UIButton)
{
operationLblHolder += "/"
operationLbl.text = operationLblHolder
processOperation(operation: .Divide)
}
@IBAction func onMultiplyPressed(sender: UIButton)
{
operationLblHolder += "x"
operationLbl.text = operationLblHolder
processOperation(operation: .Multiply)
}
@IBAction func onAddPressed(sender: UIButton)
{
operationLblHolder += "+"
operationLbl.text = operationLblHolder
processOperation(operation: .Add)
}
@IBAction func onSubtractPressed(sender: UIButton)
{
operationLblHolder += "-"
operationLbl.text = operationLblHolder
processOperation(operation: .Subtract)
}
@IBAction func onReminderPressed(sender: UIButton)
{
operationLblHolder += "%"
operationLbl.text = operationLblHolder
processOperation(operation: .Reminder)
}
@IBAction func onPowerPressed(sender: UIButton)
{
operationLblHolder += "^"
operationLbl.text = operationLblHolder
processOperation(operation: .Power)
}
@IBAction func equalsPressed(sender: UIButton)
{
processOperation(operation: currentOperation)
}
func processOperation(operation: Operation)
{
if currentOperation != Operation.Empty
{
if runningNumber != ""
{
rightHand = runningNumber
runningNumber = ""
if currentOperation == Operation.Divide
{
result = "\((Double)(leftHand)! / (Double)(rightHand)!)"
}
else if currentOperation == Operation.Multiply
{
result = "\((Double)(leftHand)! * (Double)(rightHand)!)"
}
else if currentOperation == Operation.Subtract
{
result = "\((Double)(leftHand)! - (Double)(rightHand)!)"
}
else if currentOperation == Operation.Add
{
result = "\((Double)(leftHand)! + (Double)(rightHand)!)"
}
else if currentOperation == Operation.Reminder
{
result = "\((Double)(leftHand)!.truncatingRemainder(dividingBy: (Double)(rightHand)!))"
}
else if currentOperation == Operation.Power
{
result = "\(pow((Double)(leftHand)! , (Double)(rightHand)!))"
}
leftHand = result
resultLbl.text = result
}
currentOperation = operation
}
else
{
leftHand = runningNumber
runningNumber = ""
currentOperation = operation
}
}
}