This question already has an answer here:
- C++: How to round a double to an int? [duplicate] 5 answers
- round() for float in C++ 20 answers
I am stuck in problem where the double number is not getting properly converted to integer.
In this case->
int x=1000;
double cuberoot=pow(x,(1/(double)3));
int a=cuberoot;
cout<<"cuberoot="<<cuberoot<<endl;
cout<<"a="<<a<<endl;
Output:
cuberoot=10
a=9
Why here a=9 and not 10?
Any solution to this problem??
Also I don't want to round the value..if a=3.67 then it should be converted to 3 only and not 4.
Because the
cuberoot
is very close to 10 but not quite 10.std::cout
truncates and rounds the number to 10, but a double to integer conversion will strip the decimal which is whya = 9
. To solve this problem, you can usestd::round()
:Try this and see why!