diff --git a/Calculators/Basic-Calculator-2.0/README.md b/Calculators/Basic-Calculator-2.0/README.md new file mode 100644 index 000000000..923e06d3b --- /dev/null +++ b/Calculators/Basic-Calculator-2.0/README.md @@ -0,0 +1,18 @@ +## Description :- +Added additional functionalities in the basic calculator for the point "." + +## Tech Stacks :- + +- HTML +- CSS +- JavaScript + +## Screenshots :- +If point is at the zero index 0 will be displayed before . (point) so the resultant innerText of the result will become 0. +![image](/./CalcDiverse/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg) + +If the first element inside the opening parenthesis is . then zero 0 will be displayed before the point. +![image](/./CalcDiverse/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg) + +If the first element after any operator is . then zero 0 will be displayed before the point. +![image](/./CalcDiverse/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg) \ No newline at end of file diff --git a/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg b/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg new file mode 100644 index 000000000..cc82a3487 Binary files /dev/null and b/Calculators/Basic-Calculator-2.0/image/Screenshot1.jpg differ diff --git a/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg b/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg new file mode 100644 index 000000000..7919ca60e Binary files /dev/null and b/Calculators/Basic-Calculator-2.0/image/Screenshot2.jpg differ diff --git a/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg b/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg new file mode 100644 index 000000000..a3ff00180 Binary files /dev/null and b/Calculators/Basic-Calculator-2.0/image/Screenshot3.jpg differ diff --git a/Calculators/Basic-Calculator-2.0/index.html b/Calculators/Basic-Calculator-2.0/index.html new file mode 100644 index 000000000..6e41f824b --- /dev/null +++ b/Calculators/Basic-Calculator-2.0/index.html @@ -0,0 +1,55 @@ + + + + + + + + + Basic Calculator + + + +
+ 🌞🌙 +
+ +
+
+ + C + ( + ) + / + CE + 7 + 8 + 9 + + + * + - + 4 + 5 + 6 + √ + % + . + 1 + 2 + 3 + sin + cos + + = + + , + 0 + ^ + exp + log +
+
+ + + + \ No newline at end of file diff --git a/Calculators/Basic-Calculator-2.0/script.js b/Calculators/Basic-Calculator-2.0/script.js new file mode 100644 index 000000000..aef51368a --- /dev/null +++ b/Calculators/Basic-Calculator-2.0/script.js @@ -0,0 +1,78 @@ +let body = document.querySelector("body"); +let btn = document.querySelector(".btn"); +let calc = document.forms["calc"]; +let txt = calc.elements["txt"]; +let math = window.math; +let display = document.getElementById("display"); +// let zero = document.getElementById("display"); + + +document.addEventListener("keydown", function (event) { + const validKeys = /^[0-9.\+\-\*\/\(\)\^\%\{\}\[\]&]$/; + if (validKeys.test(event.key)) { + document.getElementById("display").value += event.key; + } else if (event.key === "Enter") { + event.preventDefault(); + calculate(); + } else if (event.key === "Backspace") { + removeFromDisplay(); + } +}); + +function removeFromDisplay() { + let value = display.value; + value = value.substring(0, value.length - 1); + display.value = value; +} + +function clearDisplay() { + display.value = ""; +} + +function calculate() { + try { + const result = eval(display.value); + display.value = result; + } catch (error) { + display.value = "Error"; + } +} + +btn.onclick = function () { + body.classList.toggle("light"); +}; + +calc.onsubmit = calculate(e); + +function clearOne() { + let currentValue = calc.txt.value; + calc.txt.value = currentValue.slice(0, -1); +} + +function point() { + let currentValue = calc.txt.value; + if (currentValue == "") { + calc.txt.value = '0' + '.'; + } + else { + + if (currentValue.charAt(currentValue.length - 1) == "." || currentValue.charAt(currentValue.length - 1) == "(") { + calc.txt.value = calc.txt.value + '0' + '.'; + return; + } + if (currentValue.charAt(currentValue.length - 1) == "+" || + currentValue.charAt(currentValue.length - 1) == "*" || + currentValue.charAt(currentValue.length - 1) == "-" || + currentValue.charAt(currentValue.length - 1) == "/" || + currentValue.charAt(currentValue.length - 1) == "%" || + currentValue.charAt(currentValue.length - 1) == "√" || + currentValue.charAt(currentValue.length - 1) == "^") { + calc.txt.value = calc.txt.value + '0' + '.'; + return; + } + else { + calc.txt.value = calc.txt.value + "."; + return; + } + } +}; diff --git a/Calculators/Basic-Calculator-2.0/style.css b/Calculators/Basic-Calculator-2.0/style.css new file mode 100644 index 000000000..c5c06c29f --- /dev/null +++ b/Calculators/Basic-Calculator-2.0/style.css @@ -0,0 +1,192 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: consolas; +} + +body { + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background: #333; +} + +body.light { + background: #f8f8f8; +} + +.container { + position: relative; + min-width: 300px; + min-height: 400px; + background: #333; + padding: 40px 30px 30px; + border-radius: 20px; + box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.25), + 10px 10px 75px rgba(0, 0, 0, 0.25), inset -5px -5px 15px rgba(0, 0, 0, 0.5), + inset 5px 5px 15px rgba(0, 0, 0, 0.5); +} + +body.light .container { + background: #fafafa; + box-shadow: 25px 25px 75px rgba(0, 0, 0, 0.15), + 10px 10px 75px rgba(0, 0, 0, 0.15), inset -5px -5px 15px rgba(0, 0, 0, 0.15), + inset 5px 5px 15px rgba(0, 0, 0, 0.05); +} + +.calculator { + position: relative; + display: grid; + grid-template-columns: repeat(6, 1fr); +} + +.calculator .value { + position: relative; + grid-column: span 6; + height: 100px; + left: 10px; + width: calc(100% - 20px); + border: none; + outline: none; + background: #a7af7c; + margin-bottom: 10px; + border-radius: 10px; + box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.75); + text-align: right; + padding: 10px; + font-size: 2em; +} + +.calculator span { + position: relative; + display: grid; + place-items: center; + width: 80px; + height: 80px; + margin: 8px; + background: linear-gradient(180deg, #2f2f2f, #3f3f3f); + box-shadow: inset -8px 0 8px rgba(0, 0, 0, 0.15), + inset 0 -8px 8px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(0, 0, 0, 0.75), + 10px 20px 25px rgba(0, 0, 0, 0.4); + color: #fff; + user-select: none; + cursor: pointer; + font-weight: 400; + border-radius: 10px; +} + +body.light .calculator span::before { + background: linear-gradient(90deg, #e6e6e6, #efefef); + box-shadow: -10px -10px 10px rgba(255, 255, 255, 0.25), + 10px 5px 10px rgba(0, 0, 0, 0.15); + border-left: 1px solid #fff4; + border-bottom: 1px solid #fff4; + border-top: 1px solid #fff9; +} + +.calculator span:active { + filter: brightness(1.5); +} + +body.light .calculator span:active { + filter: brightness(0.9); +} + +.calculator span i { + position: relative; + font-style: normal; + font-size: 1.5em; + text-transform: uppercase; +} + +body.light .calculator span i { + color: #fff; +} + +body.light .calculator span.clear i, +body.light .calculator span.result-give i { + color: #fff; +} + +body.light .calculator .clear, +.calculator .clear { + grid-column: span 2; + width: 180px; + background: #f00; +} + +body.light .calculator .clear-one, +.calculator .clear-one { + background: #2196f3; +} + +body.light .calculator .clear::before, +.calculator .clear::before { + background: linear-gradient(90deg, #d20030, #ffffff5c); + border-left: 1px solid #fff4; + border-bottom: 1px solid #fff4; + border-top: 1px solid #fff4; +} + +.calculator .equal { + grid-row: span 2; + height: 180px; +} + +body.light .calculator .result-give, +.calculator .result-give { + background: #2196f3; +} + +body.light .calculator .result-give::before, +.calculator .result-give::before { + background: linear-gradient(90deg, #1479c9, #ffffff5c); + border-left: 1px solid #fff4; + border-bottom: 1px solid #fff4; + border-top: 1px solid #fff4; +} + +.btn { + position: absolute; + border: rgba(0, 0, 0, 0.1) solid; + border-radius: 10px; + top: 20px; + right: 20px; + width: 60px; + height: 60px; + background: #333; + font-size: 1.5em; + box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25), 5px 5px 30px rgba(0, 0, 0, 0.25), + inset -2px -2px -5px rgba(0, 0, 0, 0.25), + inset 2px 2px 5px rgba(0, 0, 0, 0.25); + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; +} + +body.light .btn { + background: #000; + box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), 5px 5px 30px rgba(0, 0, 0, 0.05), + inset -2px -2px -5px rgba(0, 0, 0, 0.1), + inset 2px 2px 5px rgba(0, 0, 0, 0.05); +} + +.btn strong { + display: none; + color: yellow; +} + +.btn strong:nth-child(1) { + display: block; +} + +body.light .btn strong:nth-child(1) { + display: none; +} + +body.light .btn strong:nth-child(2) { + display: block; +} \ No newline at end of file diff --git a/index.html b/index.html index aab0626e6..2a520396e 100644 --- a/index.html +++ b/index.html @@ -36,19 +36,24 @@ Home @@ -86,7 +91,8 @@

All calculators, spot in a single place!!

@@ -98,8 +104,9 @@

Calculates the distance between two points on a 2D plane.

- - Source Code + + Source Code @@ -112,7 +119,8 @@

Calculates the area and perimeter of different useful 2D shapes.

- + Source Code @@ -126,7 +134,8 @@

Calculates the volume of different important and useful 3D shapes.

- + Source Code @@ -140,7 +149,8 @@

Calculate the theoretical resistance of a 4-band resistor.

- + Source Code @@ -154,7 +164,8 @@

Calculates the person's age by taking in the date of birth as input.

- + Source Code @@ -168,7 +179,8 @@

Calculates the antilog of the any given number taken over any base.

- + Source Code @@ -182,7 +194,8 @@

Calculates nth Term and sum of n Terms present in an Arithmetic Sequence. - + Source Code @@ -196,7 +209,8 @@

Computes all the Armstrong Numbers for the specified Number of digits.

- + Source Code @@ -210,7 +224,8 @@

Calculates the aspect ratio of the specified height and width.

- + Source Code @@ -221,15 +236,33 @@

Calculates the aspect ratio of the specified height and width.

Basic Calculator

Basic old school calculator for simple calculations

+ +
+
+

Basic Calculator-2.0

+

Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and CMYK

+ +
+
+

Bayes Theorem Calculator

@@ -238,7 +271,8 @@

Calculates the probability of an event A given that event B has occurred. - + Source Code

@@ -252,7 +286,8 @@

Effortlessly split bills with our calculator. Simplify expense sharing now!< - + Source Code

@@ -266,7 +301,8 @@

Calculates results of different bitwise operations based on inputs.

- + Source Code @@ -280,7 +316,8 @@

Calculates the Body Mass Index of a person using Height & Weight.

- + Source Code @@ -294,7 +331,8 @@

Calculates the time required to finish reading a book.

- + Source Code @@ -308,7 +346,8 @@

Check the number is bouncy or not and finds bouncy numbers in a range.

- + Source Code @@ -322,7 +361,8 @@

Calculates the amount of calories burnt from particular exercise.

- + Source Code @@ -336,7 +376,8 @@

Calculates daily calorie intake based on given inputs.

- + Source Code @@ -345,12 +386,14 @@

Calculates daily calorie intake based on given inputs.

Carbon Footprint Calculator

-

Calculates an individual's carbon footprint based on the miles driven per year, per month, and per week.

+

Calculates an individual's carbon footprint based on the miles driven per year, per month, and per + week.

@@ -364,7 +407,8 @@

Calculates Centripetal force and acceleration.

- + Source Code
@@ -378,7 +422,8 @@

Converts CGPA to percentage and vice-versa.

- + Source Code
@@ -392,7 +437,8 @@

Checks if a number is circular prime and finds circular prime numbers in a r - + Source Code @@ -406,7 +452,8 @@

Calculates the angle between the hour and minute hands for a specified time. - + Source Code @@ -415,12 +462,14 @@

Calculates the angle between the hour and minute hands for a specified time.

Clothing Size Calculator

-

Inter-converts clothing sizes from one country to another, the international size, and the exact measurements for each size.

+

Inter-converts clothing sizes from one country to another, the international size, and the exact + measurements for each size.

@@ -434,7 +483,8 @@

Interconverts color codes among RGB, RGBA, HEX (Hexadecimal), HSL, HSV and C - + Source Code

@@ -448,7 +498,8 @@

Perfoms mathematical operations on complex numbers.

- + Source Code
@@ -462,7 +513,8 @@

Takes Principal amount, time in years, interest rate and Gives compound inte - + Source Code @@ -476,7 +528,8 @@

Calculates the Conductivity & Resistivity.

- + Source Code @@ -490,7 +543,8 @@

Calculates the time in which you can payoff your Credits.

- + Source Code @@ -504,7 +558,8 @@

Calculates various cricket related terms.

- + Source Code @@ -518,7 +573,8 @@

Converts various css units.

- + Source Code @@ -532,7 +588,8 @@

Checks if a number is cuban prime or not and finds cuban prime numbers in a - + Source Code @@ -546,7 +603,8 @@

Calculates cube root of any number.

- + Source Code @@ -560,7 +618,8 @@

solves cubic equations, providing real or complex solutions

- + Source Code @@ -574,7 +633,8 @@

Converts the value of one Currency unit into another Currency unit.

- + Source Code @@ -588,7 +648,8 @@

Converts input data size to other data sizes instantly.

- + Source Code @@ -602,7 +663,8 @@

Calculates Date & Time of the specific period.

- + Source Code @@ -616,7 +678,8 @@

Calculates the day for the specified date.

- + Source Code @@ -630,7 +693,8 @@

Evaluates integral of mathematical functions with definite limits.

- + Source Code @@ -644,7 +708,8 @@

Converts the Degree into Radian and vice-versa.

- + Source Code @@ -658,7 +723,8 @@

Evaluates derivatives and mathematical functions.

- + Source Code @@ -672,7 +738,8 @@

Checks the number is disarium or not and finds disarium numbers in a range.< - + Source Code @@ -686,7 +753,8 @@

Unlock Savings with Precision: Your Ultimate Discount Calculator.

- + Source Code @@ -700,8 +768,9 @@

Calculates the required time for downloading as per different system configu - - Source Code + + Source Code @@ -714,8 +783,9 @@

Calculates electricity costs based on user-supplied units, time, and cost pa - - Source Code + + Source Code @@ -728,7 +798,8 @@

Calculates Area and Perimeter for Ellipse and Hyperbola.

- + Source Code @@ -742,7 +813,8 @@

Calculates The EMI based on loan amount, interest rate and tenure.

- + Source Code @@ -756,8 +828,9 @@

Estimates the annual energy and water consumption.

- - Source Code + + Source Code @@ -770,7 +843,8 @@

Calculates the Equivalent Resistance of the Series and Parallel Configuratio - + Source Code @@ -784,7 +858,8 @@

Calculates the Savings from your income and expenditure.

- + Source Code @@ -798,7 +873,8 @@

Takes two numbers X and Y and then calculate XY.

- + Source Code @@ -812,7 +888,8 @@

Calculates the factorial of any large number instantly.

- + Source Code @@ -826,7 +903,8 @@

Calculates the Nth number from Fibonacci Sequence.

- + Source Code @@ -840,7 +918,8 @@

Calculates the cost of fuel based on fuel efficiency and distance travelled. - + Source Code @@ -854,7 +933,8 @@

Calculates the efficiency of a vehicle.

- + Source Code @@ -868,7 +948,8 @@

Calculates Greatest Common Divisor of Two values or multiple values.

- + Source Code @@ -882,7 +963,8 @@

Calculates the nth root of a given number upto n precision.

- + Source Code @@ -896,7 +978,8 @@

Calculates nth Term and sum of n Terms present in an Geometric Sequence.

- + Source Code @@ -910,7 +993,8 @@

Calculates SGPA and CGPA on the basis of credits and grades.

- + Source Code @@ -924,7 +1008,8 @@

Calculates the grade based on marks entered.

- + Source Code @@ -938,7 +1023,8 @@

Calculator which includes a graphical display to visualize functions.

- + Source Code @@ -952,7 +1038,8 @@

Calculates the Goods and Service tax of any product in rupees and dollars. - + Source Code @@ -966,7 +1053,8 @@

Check if a number is Happy or not and finds happy number in a range.

- + Source Code @@ -980,7 +1068,8 @@

Calculates the nth term of Harmonic Progression series.

- + Source Code @@ -994,7 +1083,8 @@

Calculates the heart rate monitors.

- + Source Code @@ -1008,7 +1098,8 @@

Calculates total budget for home renovation.

- + Source Code @@ -1022,7 +1113,8 @@

Calculates tax liability based on user input annual income.

- + Source Code @@ -1036,7 +1128,8 @@

Converts between infix, prefix and postfix expressions.

- + Source Code @@ -1044,13 +1137,14 @@

Converts between infix, prefix and postfix expressions.

-

Intelligence Calculator

+

Intelligence Calculator

Shows the intelligence using his/her IQ.

@@ -1064,7 +1158,8 @@

Calculates the risk in Investment on the basis of some input parameters.

- + Source Code
@@ -1078,7 +1173,8 @@

Calculates LCM of multiple numbers.

- + Source Code
@@ -1092,7 +1188,8 @@

Calculates the length conversion between two specified units.

- + Source Code @@ -1106,7 +1203,8 @@

Calculates values of variables from linear equation in two variables.

- + Source Code @@ -1120,8 +1218,9 @@

Calculates the due date of the ongoing loan.

- - Source Code + + Source Code @@ -1134,7 +1233,8 @@

Calculates the log of the given number to any base.

- + Source Code @@ -1143,12 +1243,14 @@

Calculates the log of the given number to any base.

Love Calculator

-

Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun).

+

Calculates a percentage score of love compatibility based on names or birthdates (mostly for fun). +

@@ -1162,7 +1264,8 @@

Calculates the Mass conversion between two specified units.

- + Source Code
@@ -1176,7 +1279,8 @@

Your key to matrix operations!

- + Source Code
@@ -1190,7 +1294,8 @@

Computes the total atomic weights of elements in a given chemical formula - + Source Code @@ -1204,7 +1309,8 @@

It allows users to compare old and new loan terms by inputting relevant info - + Source Code @@ -1218,7 +1324,8 @@

Calculates the multiplication table of any number.

- + Source Code @@ -1232,7 +1339,8 @@

Checks the number is neon or not and finds neon numbers in a range.

- + Source Code @@ -1246,7 +1354,8 @@

Calculates the actual take-home pay from your Cost to Company (CTC).

- + Source Code @@ -1260,7 +1369,8 @@

Calculates the days remaining until the next birthday.

- + Source Code @@ -1274,7 +1384,8 @@

Calculates the number of days between two specified dates.

- + Source Code @@ -1288,7 +1399,8 @@

Converts binary to decimal, octal, hexadecimal and vice versa.

- + Source Code @@ -1302,7 +1414,8 @@

Checks if an entered number or string is Palindrome or not.

- + Source Code @@ -1316,7 +1429,8 @@

Calculates the value percentage of any given number.

- + Source Code @@ -1330,7 +1444,8 @@

Converts given Percentage to Fraction and vice-versa with detailed solution. - + Source Code @@ -1344,7 +1459,8 @@

Calculates nPr and nCr after taking inputs as n and r.

- + Source Code @@ -1358,7 +1474,8 @@

Calculates power between different units.

- + Source Code @@ -1367,12 +1484,14 @@

Calculates power between different units.

Pregnancy Due Date Calculator

-

Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual period.

+

Designed to estimate the due date for a pregnant woman based on the first day of her last menstrual + period.

@@ -1386,7 +1505,8 @@

Calculates the Pressure conversion between two specified units.

- + Source Code
@@ -1400,7 +1520,8 @@

Calculates the prime factors of the given number.

- + Source Code
@@ -1414,7 +1535,8 @@

Calculates the Probability of different events.

- + Source Code @@ -1428,7 +1550,8 @@

Calculates Max Height, Range, Time Of Flight of Projectile.

- + Source Code @@ -1442,7 +1565,8 @@

Checks if a number is pronic and finds pronic numbers in a range.

- + Source Code @@ -1456,7 +1580,8 @@

Input three values to compute the fourth, showcasing proportionality..

- + Source Code @@ -1470,7 +1595,8 @@

Which takes two sides of right-angled triangle and gives third side.

- + Source Code @@ -1484,7 +1610,8 @@

Generates the QR Code according to the given input.

- + Source Code @@ -1498,7 +1625,8 @@

Calculates the roots of a quadratic equation.

- + Source Code @@ -1512,7 +1640,8 @@

Calculates the Quotient and Remainder.

- + Source Code @@ -1526,7 +1655,8 @@

Which takes two numbers X and Y and then calculate X / Y.

- + Source Code @@ -1535,12 +1665,14 @@

Which takes two numbers X and Y and then calculate X / Y.

Real Estate Calculator

-

This tool allows users to input property details and obtain essential information for financial planning.

+

This tool allows users to input property details and obtain essential information for financial + planning.

@@ -1554,7 +1686,8 @@

Converts Rectangular form into Polar form and vice versa.

- + Source Code
@@ -1568,7 +1701,8 @@

Calculates the Short URL from Long URL.

- + Source Code
@@ -1582,7 +1716,8 @@

Calculates the simple interest.

- + Source Code @@ -1596,7 +1731,8 @@

Calculates the amount of sleep required based on age and activity level.

- + Source Code @@ -1610,7 +1746,8 @@

Calculator that determines whether a given number is a Smith number or not.< - + Source Code @@ -1624,7 +1761,8 @@

This tool allows users to convert speeds between different units.

- + Source Code @@ -1638,7 +1776,8 @@

Calculates square and cube of a number.

- + Source Code @@ -1652,7 +1791,8 @@

Calculates the square root of a number instantly.

- + Source Code @@ -1666,7 +1806,8 @@

Calculates Maximum, minimum, mean, median, mode, etc.

- + Source Code @@ -1680,7 +1821,8 @@

Computes stress and strain using force, area, and length inputs.

- + Source Code @@ -1689,12 +1831,14 @@

Computes stress and strain using force, area, and length inputs.

Sunrise Sunset Calculator

-

Calculates approximate about when the sun will rise and set at that particular point on the Earth's surface.

+

Calculates approximate about when the sun will rise and set at that particular point on the Earth's + surface.

@@ -1708,7 +1852,8 @@

Calculator that gives an idea of the returns on their mutual fund investment - + Source Code

@@ -1722,8 +1867,9 @@

Calculates the cost of taxi ride based on distance, base fare and time.

- - Source Code + + Source Code
@@ -1736,7 +1882,8 @@

Calculates the Taylor Series expansion of a mathematical function.

- + Source Code @@ -1750,7 +1897,8 @@

Calculates the Temperature conversion between two specified units.

- + Source Code @@ -1764,7 +1912,8 @@

Whatever number you give it will return 7.

- + Source Code @@ -1778,7 +1927,8 @@

Calculates Hours, Minutes, Seconds for any entered time.

- + Source Code @@ -1792,7 +1942,8 @@

Instantly find the time difference anywhere in the world.

- + Source Code @@ -1806,7 +1957,8 @@

Calculates the different results of a triangle based on input sides.

- + Source Code @@ -1820,7 +1972,8 @@

Calculates trigonometric functions and inverses.

- + Source Code @@ -1834,7 +1987,8 @@

Provides the graph as per the given function like sin, cos, tan, etc.

- + Source Code @@ -1848,7 +2002,8 @@

Calculates the typing speed in two different units.

- + Source Code @@ -1862,7 +2017,8 @@

Calculates the resultant vector, dot product and angle between 2 vectors. - + Source Code @@ -1876,7 +2032,8 @@

Calculates number of vowels and consonants in a given paragraph.

- + Source Code @@ -1890,7 +2047,8 @@

Calculate daily water intake based on weight, activity, and weather.

- + Source Code @@ -1904,7 +2062,8 @@

Calculates the bandwidth of a website based on some factors.

- + Source Code @@ -1918,7 +2077,8 @@

Calculates weight from kgs to pounds and vice-versa.

- + Source Code @@ -1932,7 +2092,8 @@

Counts the Total Words, Unique words, Average word length and Exports the da - + Source Code @@ -1946,12 +2107,13 @@

Calculates the linear density of the yarn from unit system to another.

- + Source Code - + @@ -1968,9 +2130,12 @@

Calculates the linear density of the yarn from unit system to another.

- - - + + +