欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
}

输出结果:

ceil和floor 取整函数

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;
}

  输出结果:

ceil和floor 取整函数