Returns the next highest integer value by rounding up value if necessary.

learn more… | top users | synonyms

3
votes
2answers
219 views

round to inferior odd or even integer in C [closed]

Working in C language, I would like to round a float number to its inferior odd integer and its inferior even integer. The speed of the solution is very important (because it is computed 2M*20 times ...
0
votes
2answers
62 views

How do I generate random numbers within a range (noob)

computerTotal = (int) Math.ceil(Math.random() * 21); Can someone show me how to get 16 - 21 random number I keep getting errors when i try to implement the Math.floor function... As you can see i'm ...
1
vote
1answer
199 views

ImportError: cannot import name ceil_shift [closed]

I'm receiving this error today, before was working perfectly. ImportError: cannot import name ceil_shift All i have is: #!/usr/bin/python -W ignore::UserWarning import urllib; import urllib2; ...
1
vote
6answers
60 views

Need the nearest integer value in javascript

In my javascript pagination file I was calculating number of pages by Math.ceil() var total_pages = Math.ceil(total_items/items_per_page); But here I am getting 3 for 2.25, 1 for 0.588, 2 ...
0
votes
1answer
65 views

Getting the ceil value of a number in SQLite

So I see this question has a good answer, but I want to round up no matter what, instead of rounding down no matter what. Adding 1 to it before casting int wouldn't work because it would "round" 5.0 ...
1
vote
2answers
197 views

Rounding to nearest fraction (half, quarter, etc.)

So, I need to create the following functions but my head can't think of any possibility in PHP without complicated math. Round always up to the nearest decimal (1.81 = 1.90, 1.89 = 1.90, 1.85 = ...
2
votes
2answers
129 views

Why Math.Ceil give unexpected result when the parameter is calculated variable value?

In the following code, the last two calls to Ceil give unexpected result. Could you help to comment on the reason? Furthermore, if the error (or deviation) is random, could I get the expected value? ...
0
votes
2answers
89 views

Objective-C Ceil() not returning correct values

The following code is returning an unexpected (and wrong value). x1 = ceil(ceil(ceil(100*1.0f)*1.0f)*1.1f); It is returning 111 not 110. I am aware that multiplying a number by 1 is pointless, but ...
0
votes
1answer
52 views

Unfamiliar errors

I'm writing a program dealing with threads that I've almost got working completely. Unfortunately, I'm hitting an error (repeated 4 times) who's syntax I'm not familiar with. Here's a quick snip-it of ...
3
votes
3answers
79 views

CEIL is one too high for exact integer divisions

This morning I lost a bunch of files, but because the volume they were one was both internally and externally defragmented, all of the information necessary for a 100% recovery is available; I just ...
3
votes
3answers
259 views

Python - Ceil a datetime to next quarter of an hour

Let's imagine this datetime >>> import datetime >>> dt = datetime.datetime(2012, 10, 25, 17, 32, 16) I'd like to ceil it to the next quarter of hour, in order to get ...
1
vote
1answer
389 views

Javascript ceil with 2 decimal places instead of 1

I have a bit of javascript that's working well for me, I'd just like it to keep 2 decimal places instead of hiding the extra decimal place if its 0. Right now it says: "0.2" and I'd like it to say: ...
4
votes
1answer
256 views

Representable result of floor() and ceil()

For an arbitrary value 'v' of a floating point type (float/double/long double), does C89 guarantee that the mathematically exact integer result of floor(v) and ceil(v) is a representable value of the ...
3
votes
4answers
461 views

Implement ceil() in C

I want to implement my own ceil() in C. Searched through the libraries for source code & found here, but it seems pretty difficult to understand. I want clean & elegant code. I also searched ...
0
votes
1answer
88 views

I need to round an output and show xxx.0 for an assignment in C++

Can I get some help with my assignment? I had to create a BMI Calculator that takes in test cases and produce a bmi with one decimal place. My code passes most cases but one, where feet = 4, inches = ...
3
votes
1answer
144 views

SAS: Ceil a time format variable

Is it possible to use the command ceil on a time format variable such as 09:31:23? I would like to use ceil to have 09:32:00. I tried to use something similar to round(time,'0:01:00'T) but I want to ...
0
votes
6answers
336 views

In c , how do I make 1200 / 500 = 3

In C , how do I make 1200 / 500 = 3. I'm doing a homework assignment. Shipping Calculator: Speedy Shipping company will ship your package based on how much it weighs and how far you are sending ...
-6
votes
5answers
433 views

With PHP, how to check if decimal number is above or less than 50?

I am trying to check if a number which is inside a variable got a decimal number above 50 , or less than 50. Then depending on if it's 50 or higher, round the decimal number to 99 , and if it's less, ...
1
vote
1answer
650 views

Round to the nearest dollar

I am looking for a way to round to the nearest dollar with the following stipulations: (If wholenumber.50 and above round up to the next whole number) (If wholenumber.49 and below round down to the ...
0
votes
2answers
668 views

Java: BigInteger floor and ceil functions [closed]

I'm trying to implement an RSA attack in Java and I need to compute math operations like floor and ceil to BigInteger variables. As we know math.ceil and math.floor only apply to double variables, do ...
1
vote
3answers
202 views

PHP round & ceiling not correctly parsing data

The numbers that are being pulled from an xml file and then assigned to a variable but are outputted incorrectly. I'm not quite sure why or how to get around it. An example is this. $pricing_high = ...
1
vote
4answers
727 views

What's the difference between the pair of functions floor()/ceil() and min()/max()?

I would say all programming languages have functions with these names to choose the lesser or greater of two values: min() & max() floor() & ceil() / ceiling() And some languages have ...
0
votes
1answer
192 views

Where to find the source code of math function ceil() in glibc?

I have downloaded glibc's source code, and find the function ceil() for a long time, but I cannot find it, who can tell me where is it? And where can I find some detailed information about how to ...
0
votes
4answers
136 views

How to round decimals in PHP to match Google's results

I am trying to develop a php code to match decimals in the same exact way which Google calculator returns results, the math being used is 3.14159265 (pi) * three digits, for example in php pi * 123 ...
2
votes
2answers
252 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 = ...
1
vote
2answers
109 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 < ...
3
votes
5answers
2k 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 ...
1
vote
3answers
360 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
4k views

Rounding up to the second decimal place [duplicate]

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 ...
2
votes
1answer
324 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 = ...
3
votes
5answers
331 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 ...
0
votes
3answers
350 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 ...
6
votes
2answers
783 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: ...
18
votes
2answers
4k 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 ...
1
vote
3answers
925 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
4answers
297 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? ...
4
votes
5answers
709 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
2k 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 ...
0
votes
3answers
3k 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
650 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...
-1
votes
3answers
7k views

Implementation of ceil function in C

I have two questions regarding ceil() function.. 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 ...
4
votes
7answers
2k 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 ...
0
votes
1answer
422 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 ...
7
votes
5answers
6k 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
2
votes
6answers
780 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"; ...
4
votes
2answers
1k 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 ...
7
votes
13answers
10k 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.