在使用vc++6.0编写计算器时开方、乘方怎么表示.在使用vc++6.0编写计算器时开方、乘方怎么表示.例如:赋值 d9为 根号2我试了 double d9=Sqrt(2); 就是不行还显示error C2065:'sqrt' :undeclared identifier就是

来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/25 04:08:39
在使用vc++6.0编写计算器时开方、乘方怎么表示.在使用vc++6.0编写计算器时开方、乘方怎么表示.例如:赋值d9为根号2我试了doubled9=Sqrt(2);就是不行还显示errorC2065

在使用vc++6.0编写计算器时开方、乘方怎么表示.在使用vc++6.0编写计算器时开方、乘方怎么表示.例如:赋值 d9为 根号2我试了 double d9=Sqrt(2); 就是不行还显示error C2065:'sqrt' :undeclared identifier就是
在使用vc++6.0编写计算器时开方、乘方怎么表示.
在使用vc++6.0编写计算器时开方、乘方怎么表示.
例如:
赋值 d9为 根号2
我试了 double d9=Sqrt(2); 就是不行
还显示error C2065:'sqrt' :undeclared identifier
就是不懂用什么函数

在使用vc++6.0编写计算器时开方、乘方怎么表示.在使用vc++6.0编写计算器时开方、乘方怎么表示.例如:赋值 d9为 根号2我试了 double d9=Sqrt(2); 就是不行还显示error C2065:'sqrt' :undeclared identifier就是
一个是加载头文件问题 ,一个是注意大小写
#include
sqrt(2)