#include <cmath>
#include <iostream>
using namespace std;
int main()
{
double number, dsqrt,dpow,dlog;
cout << "Please enter a number \n";
cin >> number;
dsqrt =sqrt(number);
dpow =pow(number,5);
dlog =log(number);
cout << " Math Example\n";
cout << " Square Root is " << dsqrt << "\n";
cout << " Raised to the fifth power is " << dpow << "\n";
cout << " Log is " << dlog << "\n";
return 0;
}
Please enter a number
12
Math Example
Square Root is 3.4641
Raised to the fifth power is 248832
Log is 2.48491
5.19.Math |
| 5.19.1. | Use the abs() function |
| 5.19.2. | Create Random number |
| 5.19.3. | Use math function: sqrt, pow, log |
| 5.19.4. | Use math function: cos, sin, tan |
| 5.19.5. | Raise x to the y power |
| 5.19.6. | math library functions: log10, fabs, ceil, floor |
| 5.19.7. | math library functions: pow, fmod, sin, cos, tan |