我在VS2005中创建了C++工程,sqrt()总是报错,说找不到标识符,包含了头文件#include"math.h"
#include<math.h>
#include<cmath>
还是相同的错误
我在VS2005中创建了C++工程,sqrt()总是报错,说找不到标识符,包含了头文件#include"math.h"
#include<math.h>
#include<cmath>
还是相同的错误
double sqrt(double x)
这是函数的正确用法。如果x不是double,请转换(double)x
使用#include<math.h>就可以了