[Error] 'pow' was not declared in this scope是哪里错误

发布网友 发布时间: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>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com