|
@ -9,14 +9,19 @@ int multiply(int a, int b); |
|
|
|
|
|
|
|
|
int divide(int a, int b); |
|
|
int divide(int a, int b); |
|
|
|
|
|
|
|
|
|
|
|
// Trigonometric functions |
|
|
double sineFunction(double angle); |
|
|
double sineFunction(double angle); |
|
|
|
|
|
|
|
|
double cosineFunction(double angle); |
|
|
double cosineFunction(double angle); |
|
|
|
|
|
|
|
|
double tangentFunction(double angle); |
|
|
double tangentFunction(double angle); |
|
|
|
|
|
|
|
|
|
|
|
//.. |
|
|
|
|
|
// Logarithmic functions |
|
|
double logarithmFunction(double x); |
|
|
double logarithmFunction(double x); |
|
|
|
|
|
|
|
|
|
|
|
double naturalLogarithmFunction(double x); |
|
|
|
|
|
|
|
|
int mode(int userChoice); |
|
|
int mode(int userChoice); |
|
|
|
|
|
|
|
|
int displayMenu(); |
|
|
int displayMenu(); |
|
|