Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
269 views

Why does Math.ceil return a double?

This one threw me for a loop for a bit. When I call Math.ceil(5.2) the return is the double 6.0. My natural inclination was to think that Math.ceil(double a) would return a long. From the ...
5
votes
12answers
3k views

Is there any Java function or util class which does rounding this way: func(3/2) = 2?

Is there any Java function or util class which does rounding this way: func(3/2) = 2 Math.ceil() doesn't help, which by name should have done so. I am aware of BigDecimal, but don't need it.
4
votes
2answers
123 views

Excel-like ceiling function in python?

I know about math.ceil and numpy.ceil, but both of them lack of significance parameter. For example in Excel: =Ceiling(210.63, 0.05) -> 210.65 numpy.ceil and math.ceil in other hand: ...
4
votes
5answers
262 views

C++ ceil and negative zero

On VC++ 2008, ceil(-0.5) is returning -0.0. Is this usual/expected behavior? What is the best practice to avoid printing a -0.0 to i/o streams.
4
votes
3answers
317 views

Strange results with C++ ceiling function

I've been trying the ceiling function and have been getting some strange results. If I perform the ceil operation on a decimal number multiplied by hundred I get a certain result. However if i ...
4
votes
3answers
2k views

Get ceiling integer from number in linux (BASH)

How would I do something like: ceiling(N/500) N representing a number. But in a linux bash script
3
votes
5answers
136 views

Can I trust a real-to-int conversion of the result of ceil()?

Suppose I have some code such as: float a, b = ...; // both positive int s1 = ceil(sqrt(a/b)); int s2 = ceil(sqrt(a/b)) + 0.1; Is it ever possible that s1 != s2? My concern is when a/b is a ...
3
votes
3answers
567 views

How to ceil, floor and round bcmath numbers?

I need to mimic the exact functionality of the ceil(), floor() and round() functions on bcmath numbers, I've already found a very similar question but unfortunately the answer provided isn't good ...
2
votes
2answers
44 views

php round up / ceil merge mysql AVG()

or Show Average i have this : $item = mysql_query("SELECT AVG(top) AS total FROM " . "$config_ccms_prefix" . "news where id='$id'"); while ($cms = mysql_fetch_assoc($item)) { $avg = ...
2
votes
5answers
128 views

Ceil function: how can we implement it ourselves?

I know that C++ provides us with a ceil function. For practice, I was wondering how can we implement the ceil function in C++. The signature of the method is public static int ceil(float num) Please ...
2
votes
1answer
98 views

PHP ceil returning a float

I've created a function to return the difference between two dates <?php class days { function dateDiff($start, $end) { $start_ts = strtotime($start); $end_ts = ...
2
votes
6answers
953 views

getting Ceil() of Decimal in python?

Is there a way to get the ceil of a high precision Decimal in python? >>> import decimal; >>> decimal.Decimal(800000000000000000001)/100000000000000000000 ...
2
votes
6answers
456 views

Unexpected result using POSIX ceil() in Perl

I can't for the life of me figure out why the following produces the result it does. use POSIX; my $g = 6.65; my $t = $g * 4; my $r = $t - $g; my $n = $r / $g; my $c = ceil($n); print "$c ($n)\n"; ...
1
vote
2answers
55 views

Using ceil to get index of a PHP array

I'm trying to simplify some inherited PHP code that assigns a value to one variable based on the value in another variable, roughly mapping like this: if x < 50, y = 10 else if x >= 50 and < ...
1
vote
3answers
55 views

PHP ceil function strange behavior ?

Can somebody explain this ? echo ceil( 20.7 * 100 ); // returns 2070 echo ceil( 2070 ); // returns 2070 all OK and logical, but echo ceil( 40.7 * 100 ); // returns 4071 echo ceil( 4070 ); ...
1
vote
3answers
216 views

php: round minutes up to the nearest quarter hour, then do more

The initial problem is this: Take the amount of minutes -> turn into quarter hours -> 1 quarter hour is 1 unit -> output units I've been putting a page together all day today and my brain just ...
0
votes
3answers
56 views

PHP ceil gives wrong results if input is a float with no decimal

I've been wrestling with PHP's ceil() function giving me slightly wrong results - consider the following: $num = 2.7*3; //float(8.1) $num*=10; //float(81) $num = ceil($num); //82, but shouldn't this ...
0
votes
0answers
68 views

Android scaling sprite error

I am trying to use one image sprite for a wallpaper I am making, I tried to scale it so it fits for all resolutions but I keep getting an error. Here is the code that is giving me headache errors ...
0
votes
4answers
170 views

What does return 0xfe + ceil(x) return?

As I understand, C should convert 0xfe to -2, so the return ought to be ceil(x) - 2 - but the function seems to return neither of those. What should int m(double x){return 0xfe + ceil(x)} return? ...
0
votes
3answers
536 views

calculations in objective-c not returning the correct value

Please check out this piece of code, more specifically the hourStep calculations. int h = [[timeArray objectAtIndex:0] intValue]; int m = [[timeArray objectAtIndex:1] intValue]; int s = [[timeArray ...
0
votes
2answers
291 views

decimal values in pl/sql

How to display a value as follows in oracle: 99.99 as 99.9900, 99.9 as 99.9000, 9.99 as 9.9900, 99 as 99.0000 All cases should be satisfied.. Please help...
0
votes
1answer
260 views

Round prices up to nearest 5 after conversion in oscommerce

A conversion question relating to prices in oscommerce: I am needing for a custom currency conversion to round the USD prices up to the nearest 5$ to avoid prices being displayed at silly prices such ...
-1
votes
3answers
82 views

Rounding up to the second decimal place [closed]

Possible Duplicate: PHP Round function - round up to 2 dp? What my problem is: When i use ceil(3.6451895227869); i get like 4 but i want 3.65 Can you help me out? UPDATE Please ...
-1
votes
3answers
1k views

Implementation of ceil function in C

I have two questions regarding ceil function.. 1. The ceil() function is implemented in C. if i use ceil(3/2), it works fine.. But when i use ceil(count/2)-if value of count is 3, then it gives ...