第二章完结
This commit is contained in:
10
Chapter2/数据类型/float.c
Normal file
10
Chapter2/数据类型/float.c
Normal file
@@ -0,0 +1,10 @@
|
||||
int func(float f)
|
||||
{
|
||||
if (f < 0)
|
||||
return -1;
|
||||
// else if (f == 0)
|
||||
else if (fabs(f - 0) <= 1e-6)
|
||||
return 0;
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
Reference in New Issue
Block a user