payload: {"param_1" => "1"})
我得到错误:表达式不能用作double numerator2行的函数,它应该是4 *(2.82 * 10 ^ -8)* length
答案 0 :(得分:-2)
你这样说:
double numerator2=((4(2.82*pow(10,-8)))*length);
大概你的意思是:
double numerator2=((4 * (2.82*pow(10,-8)))*length);
// ^