阅读量:0
在 C++ 中,你可以通过包含 <cmath>
头文件来使用 ceil()
函数
#include<iostream> #include <cmath> int main() { double number = 10.5; int rounded_up = ceil(number); std::cout << "原始数字: "<< number<< std::endl; std::cout << "向上取整后的数字: "<< rounded_up<< std::endl; return 0; }
这个示例中,我们首先包含了和
头文件。然后,我们定义了一个名为
number的双精度浮点数变量,并将其值设置为 10.5。接下来,我们使用
ceil()函数将
number向上取整,并将结果存储在名为
rounded_up的整数变量中。最后,我们使用
std::cout` 输出原始数字和向上取整后的数字。