C/math.h/pow

Материал из C\C++ эксперт
Перейти к: навигация, поиск

pow: returns base raised to the exp power (base^exp)

<source lang="cpp">

//Declaration: float powf(float base, float exp);

              double pow(double base, double exp); 
              long double powl(long double base, long double exp);  

 
 #include <math.h>
 #include <stdio.h>
 int main(void)
 {
   double x = 10.0, y = 0.0;
   do {
     printf("%f\n", pow(x, y));
     y++;
   } while(y<11.0);
   return 0;
 }
        

/* 1.000000 10.000000 100.000000 1000.000000 10000.000000 100000.000000 1000000.000000 10000000.000000 100000000.000000 1000000000.000000 10000000000.000000

  • /
      </source>