C Tutorial/math.h/pow

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

pow

Item Value Header file math.h Declaration float powf(float base, float exp);double pow(double base, double exp);long double powl(long double base, long double exp); Return returns base raised to the exp power (base^exp).


<source lang="cpp">#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;
 }</source>