求救
(A+B)的4/3次方怎么写
编写一个求你这具体值的程序似乎没大用处,
所以我写了个求X的N次方根的方程,希望有用。
#include<math.h>
main()
{
float a,b,x,n;
clrscr();
printf("Please input x,n:");
scanf("%f,%f",&x,&n);
a=log10(x)/n;
b=pow(10,a);
printf("%f",b);
getch();
}