Julien Hirel, 2012-10-10 12:43 pm
Download (144 Bytes)
#include <iostream>
#include <math.h>
void print_floor (double val)
{
std::cout << "floor(" << val << ") = " << floor(val) << std::endl;
}