发布网友 发布时间:2024-09-27 17:43
共2个回答
热心网友 时间:8分钟前
[Error] 'pow' was not declared in this scope 的意思是 'pow'不在这个范围内声明
原型:extern float pow(float x, float y);
用法:#include <math.h>
功能:计算x的y次幂。
说明:x应大于零,返回幂指数的结果。
pow函数在math.h中声明, 你的代码加上#include<math.h>就可以了
热心网友 时间:6分钟前
调用库函数pow,需要加一条包含语句:
#include<math.h>