#include<stdio.h>#include<math.h>main(){ float a,b; printf("Enter the number you want to find cube root of : "); scanf("%f",&a); printf("The number you entered is : %.2f\n",a); b = pow(a,0.333); printf("The cube root of the number = %.2f",b);} 这篇关于使用C中的pow函数查找数字的立方根。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!