Answers for "c++ math pow"

C++
20

pow c++

#include <iostream>
#include <cmath>
using namespace std;
int main ()
{
  double base, exponent, result;		
  base = 3.4;	
  exponent = 4.4;	
  result = pow(base, exponent);		
  cout << base << "^" << exponent << " = " << result;		
  return 0;
}
Posted by: Guest on January-10-2020
3

exponents c++

pow(base, exponent); //must #include <cmath> to use pow()

example: 

#include <iostream>
#include <cmath> //must include this library

int main ()
{
  	int y; 
	int x =10; 
  	y = pow(x,2); // y = x^2
}
Posted by: Guest on October-19-2020
1

c++ power

/* pow example */
#include <stdio.h>      /* printf */
#include <math.h>       /* pow */

int main ()
{
  printf ("7 ^ 3 = %f\n", pow (7.0, 3.0) );
  printf ("4.73 ^ 12 = %f\n", pow (4.73, 12.0) );
  printf ("32.01 ^ 1.54 = %f\n", pow (32.01, 1.54) );
  return 0;
}
Posted by: Guest on November-18-2020
1

pow c++

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
Posted by: Guest on May-05-2021
0

c++ power of a number

#include <iostream>
#include <cmath>
using namespace std;

int main ()
{
	double base, exponent, result;
	
	base = 3.4;
	exponent = 4.4;
	result = pow(base, exponent);
	
	cout << base << "^" << exponent << " = " << result;
	
	return 0;
}
Posted by: Guest on May-18-2021
0

c++ power of a number

double pow(double x, double y);
Posted by: Guest on September-01-2021

Browse Popular Code Answers by Language