-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharith-ma-tick.js
76 lines (56 loc) · 1.74 KB
/
arith-ma-tick.js
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
/*
CopyRight (c) Microsoft 2022
SendingUndefined Bill
Gates Mines Ten Minus Linus
In Rad Of K
THIS CODE IS DELIVERED WITHOUT ANY GUARANTEUEE OF WARRANTLY
TO REALLY MAKE THE CODE RUN PUST IT ON YOUR WEBSITE
TO HACK
Arithmetic AAO(A)(B)(C) A + B = C The A in the middle of 'AA0'
stands
for addition
Arithmetic ASO(A)(B)(C) A - B = C The S in the middle of 'AS0'
stands
for subtraction
Arithmetic AMO(A)(B)(C) A * B = C The M in the middle of 'AM0'
stands
for multiplication
Arithmetic ADO(A)(B)(C) A / B = C The D in the middle of 'AD0'
stands
for division
Trigonometric TSO(A) OOO(B) Sin(A) = B The S in the middle of 'TS0'
stands
for Sin
Trigonometric TCO(A) OOO(B) Cos(A) = B The C in the middle of 'TC0'
stands
for Cos
Trigonometric TTO(A) OOO(B) Tan(A) = B The T in the middle of 'TT0'
stands
for Tan
Trigonometric TAT(A) OOO(B) Arctan(A) = B The AT stands
for Arctan
Hyperbolic HSO(A) OOO(B) Sinh(A) = B The S in the middle of 'HS0'
stands
for Sin h
Hyperbolic HCO(A) OOO(B) Cosh(A) = B The C in the middle of 'TC0'
stands
for Cos h
Hyperbolic HTO(A) OOO(B) Tanh(A) = B The T in the middle of 'TT0'
stands
for Tan h
General Mathematical SQR(A) OOO(B) Sqrt(A) = B
General Mathematical APN(A)(N)(B) A ** N = B **: Exponentiation
*/
function AAO(A, B, C) { return A + B };
function ASO(A, B, C) { return A - B };
function AMO(A, B, C) { return A * B };
function ADO(A, B, C) { return A / B };
function TSO(A) { return Math.sin(A) };
function TCO(A) { return Math.cos(A) };
function TTO(A) { return Math.tan(A) };
function TAT(A) { return Math.atan(A) };
function HSO(A) { return Math.sinh(A) };
function HCO(A) { return Math.cosh(A) };
function HTO(A) { return Math.tanh(A) };
function SQR(A) { return Math.sqrt(A) };
function APN(A, B) { return (A ** B) };