#include <cmath>
pow(base, exponent);
/* pow example */
#include <stdio.h> /* printf */
#include <math.h> /* pow */
int main ()
{
printf ("7 ^ 3 = %f
", pow (7.0, 3.0) ); //7 ^ 3 = 343.000000
printf ("4.73 ^ 12 = %f
", pow (4.73, 12.0) ); //4.73 ^ 12 = 125410439.217423
printf ("32.01 ^ 1.54 = %f
", pow (32.01, 1.54) ); //32.01 ^ 1.54 = 208.036691
return 0;
}
/* pow example */
#include <stdio.h> /* printf */
#include <math.h> /* pow */
int main ()
{
printf ("7 ^ 3 = %f
", pow (7.0, 3.0) );
printf ("4.73 ^ 12 = %f
", pow (4.73, 12.0) );
printf ("32.01 ^ 1.54 = %f
", pow (32.01, 1.54) );
return 0;
}
#include <bits/stdc++.h>
using namespace std;
#define ll long long
ll power(ll a,ll b){
ll ans = 1;
while(b--){
ans *= a;
}
return ans;
}
int main(){
ll x,y;
cin >> x >> y;
ll x_power_y = power(x,y);
cout << x_power_y << endl;
}
#include <cmath> //library for the function
pow(x,y);
Given two numbers base (x) and exponent (y), pow() function finds x raised to the power of y.
double result = pow(x, y);
// CPP program to illustrate
// power function
#include <bits/stdc++.h>
using namespace std;
int main()
{
double x = 6.1, y = 4.8;
// Storing the answer in result.
double result = pow(x, y);
// printing the result upto 2
// decimal place
cout << fixed << setprecision(2) << result << endl;
return 0;
}
template<class T>T Pow(T n,T p)
{
T res = n;
for(T i = 1; i < p; i++)
res *= n;
return res;
}
//Example: Pow(2,3) = 8
In C++, pow(a, b) = a^b
Code Example |
---|
Cpp :: a square plus b square plus c square |
Cpp :: c++ check if string is isogram |
Cpp :: setw c++ |
Cpp :: how to use toString method in C++ |
Cpp :: c #define |
Cpp :: notepad++ |
Cpp :: tree to array c++ |
Cpp :: convert int to string in c++ |
Cpp :: Inner Section Sticky Scroll in elementor |
Cpp :: How to get cursor position c++ |
Cpp :: login system with c++ |
Cpp :: length of number c++ |
Cpp :: c++ header boilerplate |
Cpp :: how to find the length of an array in cpp |
Cpp :: cpp map insert |
Cpp :: c++ get whole line |
Cpp :: two elements with difference K in c++ |
Cpp :: define vector with size and value c++ |
Cpp :: c++ shell |
Cpp :: exponent power of x using c c++ |
Cpp :: cknuth hash |
Cpp :: opencv cpp create single color image |
Cpp :: 1768. Merge Strings Alternately leetcode solution in c++ |
Cpp :: printing in column c++ |
Cpp :: put function in cpp |
Cpp :: Reverse a linked list geeksforgeeks in c++ |
Cpp :: c++ split string |
Cpp :: len in cpp |
Cpp :: runtime |
Cpp :: how to insert in a queue c++ |