如何检查log2是否将输出设为-inf

时间:2018-06-23 05:45:18

标签: c++ math

#include iostream
#include cmath
using namespace std;
int main()
    {
         int a=0;
         if(log2(a)=="-inf")
             cout<<"ok";
    }

上面的代码显示错误,那么检查log2(a)的输出是否为-inf的方法是什么?即参数中的数字为0。

0 个答案:

没有答案