嗨,我想将 Infinity 值分配给我的自动启动代码中的变量,我将使用math.h
但它给出了 qac 警告标识符未声明
我已经包含math.h
了头文件,仍然 qac 给了我一个警告标识符尚未声明。有没有办法赋值?
# include <math.h>
int Calcula(x_val ,y_val)
{
if(x_val >y_val )
return INFINITY
}
// this code is not exact code ..
它应该返回 INFINITY ,