#include <iostream> #include <cmath> int main() { double num = 4.3; std::cout << "ceil(4.3) = " << ceil(num) << std::endl; return 0; }