-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1.6Math.cpp
54 lines (43 loc) · 1.76 KB
/
1.6Math.cpp
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
#include <iostream>
#include <cmath> // Include the cmath library
#include<conio.h>
using namespace std;
//C++ has many functions that allows you to perform mathematical tasks on numbers.
int main() {
//The max(x,y) function can be used to find the highest value of x and y:
cout << max(5, 10);
//And the min(x,y) function can be used to find the lowest value of x and y:
cout << min(5, 10);
cout << sqrt(64);
cout << round(2.6);
cout << log(2);
/*********
A list of other popular Math functions (from the <cmath> library) can be found in the table below:
Function Description
abs(x) Returns the absolute value of x
acos(x) Returns the arccosine of x, in radians
asin(x) Returns the arcsine of x, in radians
atan(x) Returns the arctangent of x, in radians
cbrt(x) Returns the cube root of x
ceil(x) Returns the value of x rounded up to its nearest integer
cos(x) Returns the cosine of x, in radians
cosh(x) Returns the hyperbolic cosine of x, in radians
exp(x) Returns the value of Ex
expm1(x) Returns ex -1
fabs(x) Returns the absolute value of a floating x
fdim(x, y) Returns the positive difference between x and y
floor(x) Returns the value of x rounded down to its nearest integer
hypot(x, y) Returns sqrt(x2 +y2) without intermediate overflow or underflow
fma(x, y, z) Returns x*y+z without losing precision
fmax(x, y) Returns the highest value of a floating x and y
fmin(x, y) Returns the lowest value of a floating x and y
fmod(x, y) Returns the floating point remainder of x/y
pow(x, y) Returns the value of x to the power of y
sin(x) Returns the sine of x (x is in radians)
sinh(x) Returns the hyperbolic sine of a double value
tan(x) Returns the tangent of an angle
tanh(x) Returns the hyperbolic tangent of a double value
**************/
return 0;
}
//Navjot Singh Prince