Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i just wrote a tiny method to count the number of page for cell phone sms.i had not option to round up using Math.ceil and honestly it seems to be very ugly.

here is my code

public class Main {

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
   String message = "today we stumbled upon a huge performance leak while optimizing a raycasting algorithm. Much to our surprise, the Math.floor() method took almost half of the calculation time: 3 floor operations took the same amount of time as one trilinear interpolation. Since we could not belive that the floor-method could produce such a enourmous overhead, we wrote a small test program that reproduce";

   System.out.printf("COunt is %d ",(int)messagePageCount(message));



}

public static double messagePageCount(String message){
    if(message.trim().isEmpty() || message.trim().length() == 0){
        return 0;
    } else{
        if(message.length() <= 160){
            return 1;
        } else {
            return Math.ceil((double)message.length()/153);
        }
    }
}

i don't really like this piece of code and i'm looking for a more elegant way of doing this. with this i'm expecting 3 and not 3.0000000.Any ideas? thanks for reading

share|improve this question

4 Answers

up vote 17 down vote accepted

To round up an integer division you can use

import static java.lang.Math.abs;

public static long roundUp(long num, long divisor) {
    int sign = (num > 0 ? 1 : -1) * (divisor > 0 ? 1 : -1);
    return sign * (abs(num) + abs(divisor) - 1) / abs(divisor);
}

or if both numbers are positive

public static long roundUp(long num, long divisor) {
    return (num + divisor - 1) / divisor;
}
share|improve this answer
Note that this only works for num >= 0. – user905686 Jul 18 '12 at 9:48
It rounds to positive infinity. It doesn't round away from zero which is another option. – Peter Lawrey Jul 18 '12 at 9:55
2  
I mean, try num=-2 and div=-3. This ends up in -6/-3=2 but 0,666.. should be rounded to 1. In fact it doesn´t work for num <= 0 && div <= 0. – user905686 Jul 26 '12 at 11:16
@user905686 Good point, correcting. – Peter Lawrey Jul 26 '12 at 11:47
1  
My compiler didn't recognize abs() - I had to use Math.abs()... – Doug English Mar 25 at 8:35
(message.lenghth() + 152) / 153

This will give a "rounded up" integer.

share|improve this answer

this might be helpfull,, Subtract the remainder to the legnth and make it a divisible number and then divide it with 153

int r=message.length()%153;       //Calculate the remainder by %153
return (message.length()-r)/153;  // find the pages by adding the remainder and 
                                  //then divide by 153 
share|improve this answer

Expanding on Peter's solution, this is what I've found works for me to always round 'towards positive infinity':

public static long divideAndRoundUp(long num, long divisor) {
    if (num == 0 || divisor == 0) { return 0; }

    int sign = (num > 0 ? 1 : -1) * (divisor > 0 ? 1 : -1);

    if (sign > 0) {
        return (num + divisor - 1) / divisor;
    }
    else {
        return (num / divisor);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.