调用 库函数 pow() 如下示例代码:
#include#includemain(){int x,n,z; x=5;z=pow(x,n);printf("%d",z);}
使用pow函数,写法pow(a,b);要包含库函数#include