运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,明暗
前往 Spaces
#include <stdio.h> #include <math.h> int main() { printf("%f\n", pow(2.0, 8.0)); printf("%f\n", pow(3.0, 4.0)); printf("%f\n", pow(9.0, 0.5)); printf("%f\n", pow(8.0, -1.0)); printf("%f\n", pow(10.0, -2.0)); return 0; }
256.000000
81.000000
3.000000
0.125000
0.010000