20010114-2.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 32 行
C
32 行
extern void exit (int);extern void abort (void);floatrintf (float x){ static const float TWO23 = 8388608.0; if (__builtin_fabs (x) < TWO23) { if (x > 0.0) { x += TWO23; x -= TWO23; } else if (x < 0.0) { x = TWO23 - x; x = -(x - TWO23); } } return x;}int main (void){ if (rintf (-1.5) != -2.0) abort (); exit (0);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?