-
Notifications
You must be signed in to change notification settings - Fork 1
/
cic.go
402 lines (402 loc) · 11.5 KB
/
cic.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
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
package main
import(
"fmt"
"strings"
"math"
"os"
)
const FA = 1
const PA = 2
const IR = 3
const NP = 4
const PCFA = 5
const EAIR = 6
const PV = 7
const VP = 8
const EX = 9
const HP = 10
var CH float64
var counter int
func main() {
if counter > 0 {
goto choice
} else {
fmt.Println("Welcome to cic! (Compound Interest Calculator)\n"+
" \n"+
"CHOOSE FROM THE FOLLOWING OPTIONS:\n"+
" \n"+
"1.Future Amount Calculator\n"+
"2.Principal Amount Calculator\n"+
"3.Interest Rate Calculator\n"+
"4.Number of Periods Calculator\n"+
"5.Periodic Compounding Future Amount Calculator\n"+
"6.Effective Annual Interest Rate Calculator\n"+
"7.Present Value of Annuity Calculator\n"+
"8.Value of Each Payment for Annuity Calculator\n")}
choice:
fmt.Print("[9=Exit,10=Help]\n"+
"Enter a choice(1-10): ")
fmt.Scanf("%f\n", &CH)
if CH == FA {
fmt.Println("You have chosen Future Amount Calculator")
calcFA()
} else if CH == PA {
fmt.Println("You have chosen Principal Amount Calculator")
calcPA()
} else if CH == IR {
fmt.Println("You have chosen Interest Rate Calculator")
calcIR()
} else if CH == NP {
fmt.Println("You have chosen Number of Periods Calculator")
calcNP()
} else if CH == PCFA {
fmt.Println("You have chosen Periodic Compounding Future Amount Calculator")
calcPCFA()
} else if CH == EAIR {
fmt.Println("You have chosen Effective Annual Interest Rate Calculator")
calcEAIR()
} else if CH == PV {
fmt.Println("You have chosen Present Value of Annuity Calculator")
calcPV()
} else if CH == VP {
fmt.Println("You have chosen Value of Each Payment for Annuity Calculator")
calcVP()
} else if CH == EX {
fmt.Println("Thank You for using cic!")
os.Exit(0)
} else if CH == HP {
fmt.Println("CHOOSE FROM THE FOLLOWING OPTIONS:\n"+
" \n"+
"1.Future Amount Calculator\n"+
"2.Principal Amount Calculator\n"+
"3.Interest Rate Calculator\n"+
"4.Number of Periods Calculator\n"+
"5.Periodic Compounding Future Amount Calculator\n"+
"6.Effective Annual Interest Rate Calculator\n"+
"7.Present Value of Annuity Calculator\n"+
"8.Value of Each Payment for Annuity Calculator\n")
counter++
main()
} else {
error := "ERROR: you did not enter a number between 1 & 10"
fmt.Println(error)
goto choice
}
}
func calcFA() {
var p float64
var s string
var n float64
var r float64
pa:
fmt.Print("Enter a Principal Amount(£): ")
fmt.Scanf("%f\n", &p)
sp := fmt.Sprintf("%f", p)
if !(p > 0) || ((strings.ContainsRune(sp, '\u00a3')) || ((strings.ContainsRune(sp, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto pa
} else {
fmt.Print("Enter a Type of Period(days-weeks-months-years): ")
fmt.Scanf("%s\n", &s)}
np:
fmt.Print("Enter a Number of Periods("+s+"): ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
goto ir}
ir:
fmt.Print("Enter a Interest Rate(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate future amount for loan or investment
//f = p × ((r/100)+1) ^ n
f := math.Pow(float64(r)/100+1, float64(n))*p
F := fmt.Sprintf("%.2f", f)
fmt.Println("Future Amount:£",F)
counter++
main()
}
}
func calcPA() {
var f float64
var s string
var n float64
var r float64
fa:
fmt.Print("Enter a Future Amount(£): ")
fmt.Scanf("%f\n", &f)
sf := fmt.Sprintf("%f", f)
if !(f > 0) || ((strings.ContainsRune(sf, '\u00a3')) || ((strings.ContainsRune(sf, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto fa
} else {
fmt.Print("Enter a Type of Period(days-weeks-months-years): ")
fmt.Scanf("%s\n", &s)}
np:
fmt.Print("Enter a Number of Periods("+s+"): ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
goto ir}
ir:
fmt.Print("Enter a Interest Rate(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate principal amount for loan or investment
//p = f / ((r/100)+1) ^ n
p := math.Pow(float64(r)/100+1, float64(n))
fp := f/p
P := fmt.Sprintf("%.2f", fp)
fmt.Println("Principal Amount:£",P)
counter++
main()
}
}
func calcIR() {
var f float64
var s string
var n float64
var p float64
pa:
fmt.Print("Enter a Principal Amount(£): ")
fmt.Scanf("%f\n", &p)
sp := fmt.Sprintf("%f", p)
if !(p > 0) || ((strings.ContainsRune(sp, '\u00a3')) || ((strings.ContainsRune(sp, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto pa
} else {
goto fa}
fa:
fmt.Print("Enter a Future Amount(£): ")
fmt.Scanf("%f\n", &f)
sf := fmt.Sprintf("%f", f)
if !(f > 0) || ((strings.ContainsRune(sf, '\u00a3')) || ((strings.ContainsRune(sf, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto fa
} else {
fmt.Print("Enter a Type of Period(days-weeks-months-years): ")
fmt.Scanf("%s\n", &s)}
np:
fmt.Print("Enter a Number of Periods("+s+"): ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
//Calculate interest rate for loan or investment
//r = (f/p) ^ 1/n - 1
fp := f/p
nd := 1/n
r := (math.Pow(float64(fp), float64(nd))-1)*100
R := fmt.Sprintf("%.2f", r)
fmt.Println("Interest Rate:",R,"%")
counter++
main()
}
}
func calcNP() {
var f float64
var s string
var r float64
var p float64
pa:
fmt.Print("Enter a Principal Amount(£): ")
fmt.Scanf("%f\n", &p)
sp := fmt.Sprintf("%f", p)
if !(p > 0) || ((strings.ContainsRune(sp, '\u00a3')) || ((strings.ContainsRune(sp, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto pa
} else {
goto fa}
fa:
fmt.Print("Enter a Future Amount(£): ")
fmt.Scanf("%f\n", &f)
sf := fmt.Sprintf("%f", f)
if !(f > 0) || ((strings.ContainsRune(sf, '\u00a3')) || ((strings.ContainsRune(sf, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto fa
} else {
fmt.Print("Enter a Type of Period(days-weeks-months-years): ")
fmt.Scanf("%s\n", &s)}
ir:
fmt.Print("Enter a Interest Rate(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate number of periods for loan or investment
//n = ln(f/p) / ln(1+r)
fp := f/p
rd := (r/100)+1
n := math.Log(fp)/math.Log(rd)
N := fmt.Sprintf("%.2f", n)
fmt.Println("Number of",s,":",N)
counter++
main()
}
}
func calcPCFA() {
var p float64
var n float64
var r float64
pa:
fmt.Print("Enter a Principal Amount(£): ")
fmt.Scanf("%f\n", &p)
sp := fmt.Sprintf("%f", p)
if !(p > 0) || ((strings.ContainsRune(sp, '\u00a3')) || ((strings.ContainsRune(sp, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto pa
} else {
goto np}
np:
fmt.Print("Enter a Number of Periods within the year: ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
goto ir}
ir:
fmt.Print("Enter a Interest Rate(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate periodic compounding future amount for loan or investment
//f = p × (((r/100)/n)+1) ^ n
rn := (r/100)/n
f := math.Pow(float64(rn)+1, float64(n))*p
F := fmt.Sprintf("%.2f", f)
fmt.Println("Periodic Compounding Future Amount:£",F)
counter++
main()
}
}
func calcEAIR() {
var r float64
var n float64
np:
fmt.Print("Enter a Number of Periods within the year: ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
goto ir}
ir:
fmt.Print("Enter a Nominal Interest Rate(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate effective annual interest rate for loan or investment
//e = (1+((r/100)/n)) ^ n − 1
rn := (r/100)/n
R := math.Pow(float64(rn)+1, float64(n))-1
e := R*100
E := fmt.Sprintf("%.3f", e)
fmt.Println("Effective Annual Interest Rate:",E,"%")
counter++
main()
}
}
func calcPV() {
var p float64
var n float64
var r float64
pv:
fmt.Print("Enter a Value of Each Payment for Annuity(£): ")
fmt.Scanf("%f\n", &p)
sp := fmt.Sprintf("%f", p)
if !(p > 0) || ((strings.ContainsRune(sp, '\u00a3')) || ((strings.ContainsRune(sp, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto pv
} else {
goto np}
np:
fmt.Print("Enter a Number of Periods: ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
goto ir}
ir:
fmt.Print("Enter a Interest Rate per Period(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate present value of annuity
//v = p × (1 − (1+r) ^ −n) / r
tr := (r/100)+1
tn := n*-1
tv := math.Pow(float64(tr), float64(tn))
v := ((1-tv)/(r/100))*p
V := fmt.Sprintf("%.2f", v)
fmt.Println("Present Value of Annuity:£",V)
counter++
main()
}
}
func calcVP() {
var v float64
var n float64
var r float64
vp:
fmt.Print("Enter a Present Value of Annuity(£): ")
fmt.Scanf("%f\n", &v)
sv := fmt.Sprintf("%f", v)
if !(v > 0) || ((strings.ContainsRune(sv, '\u00a3')) || ((strings.ContainsRune(sv, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto vp
} else {
goto np}
np:
fmt.Print("Enter a Number of Periods: ")
fmt.Scanf("%f\n", &n)
if !(n > 0) {
fmt.Println("ERROR: you did not enter a number greater than zero")
goto np
} else {
goto ir}
ir:
fmt.Print("Enter a Interest Rate per Period(%): ")
fmt.Scanf("%f\n", &r)
sr := fmt.Sprintf("%f", r)
if !(r > 0) || ((strings.ContainsRune(sr, '\u00a3')) || ((strings.ContainsRune(sr, '$')))) {
fmt.Println("ERROR: you did not enter a number greater than zero, or included a symbol")
goto ir
} else {
//Calculate value of each payment for annuity
//p = v × r / (1 − (1+r) ^ −n)
tr := (r/100)+1
tn := n*-1
tp := math.Pow(float64(tr), float64(tn))
p := ((r/100)/(1-tp))*v
P := fmt.Sprintf("%.2f", p)
fmt.Println("Value of Each Payment for Annuity:£",P)
counter++
main()
}
}