mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-08 23:14:06 +08:00
37 lines
852 B
HTML
37 lines
852 B
HTML
<h1>数学函数 - floor</h1>
|
||
|
||
|
||
<p>原型:extern float floor(float x);</p>
|
||
|
||
<p>用法:#include <math.h></p>
|
||
|
||
<p>功能:求不大于x的最达整数</p>
|
||
|
||
<p>说明:返回x的下限,如74.12的下限为74,-74.12的下限为-75。返回值为float类型。</p>
|
||
|
||
举例:<pre><code class="language-c">
|
||
|
||
// floor.c
|
||
|
||
#include <syslib.h>
|
||
#include <math.h>
|
||
|
||
main()
|
||
{
|
||
float x;
|
||
|
||
clrscr(); // clear screen
|
||
textmode(0x00); // 6 lines per LCD screen
|
||
|
||
x=74.12;
|
||
printf("floor(%.2f)=%.0f\n",x,floor(x));
|
||
x=-74.12;
|
||
printf("floor(%.2f)=%.0f\n",x,floor(x));
|
||
|
||
getchar();
|
||
return 0;
|
||
}
|
||
|
||
</code></pre>相关函数:<a href="ceil.html">ceil</a>
|
||
|