-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFunction.cs
46 lines (42 loc) · 1.17 KB
/
Function.cs
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
using System;
using System.Collections.Generic;
namespace Calculator
{
public static class Function
{
public static double Call(string function, Stack<Token> argumentStack)
{
switch (function) {
case "sin":
return Math.Sin (GetArg(argumentStack));
case "cos":
return Math.Cos (GetArg(argumentStack));
case "tan":
return Math.Tan (GetArg(argumentStack));
case "abs":
return Math.Abs (GetArg(argumentStack));
case "max":
return Math.Max (GetArg(argumentStack), GetArg(argumentStack));
case "min":
return Math.Min (GetArg(argumentStack), GetArg(argumentStack));
case "neg":
return -GetArg (argumentStack);
case "avg":
return (GetArg(argumentStack) + GetArg(argumentStack)) / 2;
case "sqrt":
return Math.Sqrt (GetArg(argumentStack));
case "vavg":
int count = (int)GetArg(argumentStack);
double sum = 0;
for (int i = 0; i < count; ++i)
sum += GetArg(argumentStack);
return sum / count;
}
throw new ArgumentException (String.Format ("Invalid function, {0}", function));
}
private static double GetArg(Stack<Token> argumentStack)
{
return double.Parse (argumentStack.Pop ().Value);
}
}
}