-
-
-
-
-
-
-
[
C#(.net)]
Calculator.rar
Calculator with special functions: goniometric functions, hyperbolic functions, factorial, square.
-
-
-
[
Java/JSP]
calculator-src.zip
... sum of arithmetic progression can be calculated by the following function
sum(x)=x>0?x+sum(x-1):0
Calculator has only < and > comparison operators (because comparing floating point number for equality is any case bad idea). But it ...
-