#include <math.h>
#include <stdio.h>
int main(void)
{
double x = 10.0, y = 2.0;
printf("%f",pow(x,y));
getchar();
return 0;
}
#include <stdio.h>
int main(void)
{
double x = 10.0, y = 2.0;
printf("%f",pow(x,y));
getchar();
return 0;
}
0 comments:
Post a Comment