How to use floor to get the closest integer value which is less than or equal to specified value in C++

1 Answer

0 votes
#include <iostream>
#include <cmath>

using namespace std;

int main()
{
	cout << floor(3) << endl;
	cout << floor(3.14) << endl;
	cout << floor(3.4) << endl;
	cout << floor(3.5) << endl;
	cout << floor(3.6) << endl;
	cout << floor(3.99) << endl;

	return 0;
}


/*
run:

3
3
3
3
3
3

*/

 



answered May 7, 2019 by avibootz
...