ceil和floor 取整函数
程序员文章站
2022-06-03 08:33:54
...
ceil向上取整
floor向下取整
ceil的实例
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double a[10];
for (int n=0;n<10;n++)
{
cout<<"输入a:"<<endl;
cin>>a[n];
a[n]=ceil(1.0*a[n]/8);
cout<<"运算结果:\na="<<a[n]<<endl;
}
system("pause");
return 0;
}
输出结果:
floor的实例
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double b[11];
cout<<"输入b:"<<endl;
for (int i=0;i<10;i++)
{
cin>>b[i];
b[i]=floor(1.0*b[i]/8);
cout<<"b="<<b[i]<<endl;
}
system("pause");
return 0;
}
输出结果:
上一篇: PHP编程与应用_PHP