#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
double lenght;
lenght=(3(sqrt(3)/2))*(pow(2,2));
return length;
}
为什么出现错误:表达式不能用作函数
试试这个
lenght=(3*(sqrt(3)/2))*(pow(2,2)));
您忘记了表达式运算符。
另外,由于
#include<iomanip>
#include<cmath>
using namespace std;
int main()
{
double lenght;
lenght = (3*(sqrt(3) / 2)) * (pow(2, 2));
return (int)lenght;
}