Tagged Questions
13
votes
5answers
2k views
Why does Math.Floor(Double) return a value of type Double?
I need to get the left hand side integer value from a decimal or double. For Ex: I need to get the value 4 from 4.6. I tried using Math.Floor function but it's returning a double value, for ex: It's ...
9
votes
8answers
1k views
Which floor is redundant in floor(sqrt(floor(x)))?
I have floor(sqrt(floor(x))). Which is true:
The inner floor is redundant.
The outer floor is redundant.
5
votes
5answers
2k views
Does casting to an int after std::floor guarantee the right result?
I'd like a floor function with the syntax
int floor(double x);
but std::floor returns a double. Is
static_cast <int> (std::floor(x));
guaranteed to give me the correct integer, or could I ...
2
votes
3answers
86 views
Is there a way to floor/ceil based on whether the value is over 0.5 or under?
I am trying to round my values so that if it's 0.5 or greater, it becomes 1, else it becomes 0. For example:
3.7 -> 4;
1.3 -> 1;
2.5 -> 3;
...
Any ideas?
2
votes
3answers
1k views
Fractional Part of the number question
What is a good algorithm to determine the necessary fraction needed to add/sub to the number in order to round it to the nearest integer without using the inbuilt ceiling or floor funcitons?
Edit: ...
1
vote
1answer
4k views
Math.round() and Math.floor() problem with setInterval()
I'm having problem with Math.round() and Math.floor() in setInterval() function by using jQuery.
This is my code:
var number1 = 400;
var up_up = setInterval(
function (){
number1 = ...
0
votes
5answers
91 views
Why would i combine Math.floor With Math.random?
just like this:
Math.floor(Math.Random * num);
Can someone explain please?
0
votes
3answers
243 views
floor of double(time_t)
I cannot understand why this throws undefined reference to `floor'":
double curr_time = (double)time(NULL);
return floor(curr_time);
Hasn't it been casted to double, which is what floor receives?