#2147. C++-编译-输出内容为nan或者inf或者-inf,检查调用函数时是否超出其定义域

C++-编译-输出内容为nan或者inf或者-inf,检查调用函数时是否超出其定义域

Background

Description

nan不存在的数

inf/-inf正负无穷大

比如(以下数学公式需要包含<cmath>或者<math.h>头函数):

printf("%d\n",sqrt(-1));  //输出nan
printf("%d\n",ln(0));   //输出-inf

Format

Input

Output

Samples



Limitation

1s, 1024KiB for each test case.