Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
12answers
68k views

How do you round a floating point number in Perl?

How can I round a decimal number (floating point) to the nearest integer? e.g. 1.2 = 1 1.7 = 2
23
votes
7answers
1k views

Why do programming languages round down until .6?

If you put a decimal in a format where has to be rounded to the nearest 10th, and it is: 1.55, it'll round to 1.5. 1.56 will then round to 1.6. In school I recall learning that you round up when you ...
13
votes
5answers
4k views

Round Down Number

How can I round down a number in Javascript? math.round() doesn't work because it rounds it to the nearest decimal. I'm not sure if there is a better way of doing it other than breaking it apart at ...
13
votes
4answers
22k views

jQuery round corner code for IE8 in standards mode?

I need a solution for round corners using javascript with or without jQuery in IE8 standards mode.
12
votes
10answers
591 views

How does Excel successfully Rounds Floating numbers even though they are imprecise?

For example, This blog says 0.005 is not exactly 0.005 but rounding that number yields the right result. I tried all kinds of Round in my C++ and I have failed for rounding numbers to the certain ...
9
votes
4answers
12k views

Built in .Net algorithm to round value up to the nearest 10 interval

How to, in C# round up any value to 10 interval? For example, if I have 11, I want it to return 10, if I have 136, then I want it to return 140. I can easily do it by hand return ((int)( ...
8
votes
3answers
88 views

Rounding decimals in nested data structures in Python

I have a program which deals with nested data structures where the underlying type usually ends up being a decimal. e.g. x={'a':[1.05600000001,2.34581736481,[1.1111111112,9.999990111111]],...} Is ...
8
votes
1answer
518 views

VBA Round Function

In one of my programs I need to calculate the average on a range of numbers. The problem is that sometimes the answer comes out to a huge decimal and I need to try and get that down to two decimal ...
7
votes
2answers
866 views

Ruby BigDecimal Round: Is this an error?

While writing a test with a value that gets represented as a BigDecimal, I ran into something weird and decided to dig into it. In brief, '0.00009' when rounded to two decimal places is returned as ...
6
votes
3answers
144 views

Problems with Rounding Decimals (python)

In my program, decimal accuracy is very important. A lot of my calculations must be accurate to many decimal places (such as 50). Because I am using python, I have been using the decimal module ...
6
votes
3answers
403 views

PHP rounding error

I'm using PHP 5.2.13 on my linux server. I'm getting weird error when rounding numbers. This is my test case: <?php echo " " . round(1.505, 2) . "\n"; echo " " . round(11.505, 2) . ...
6
votes
4answers
421 views

Python: How to round 123 to 100 instead of 100.0?

round(123,-2) 100.0 How to round it to 100 instead of 100.0?
6
votes
4answers
9k views

How do I round a number in JSTL?

I'm doing a division in a JSP and I'd like to round the result - how should I do this? i.e. <c:set var="expiry" value="${(expire.time - now.time) / (60 * 1000)}"/> ...how do I round the ...
6
votes
4answers
2k views

round number to nearest 0.2 with PHP

I'm creating this rating system using 5-edged stars. And I want the heading to include the average rating. So I've created stars showing 1/5ths. Using "1.2" I'll get a full star and one point on the ...
5
votes
4answers
1k views

Round with integer division

Is there is a simple, pythonic way of rounding to the nearest whole number without using floating point? I'd like to do the following but with integer arithmetic: skip = int(round(1.0 * total / ...
5
votes
2answers
399 views

Android: can I create a view/canvas that is not rectangular, but e.g. round?

I have a view that is round and hovering above (-> in z-axis direction coming out of the screen) the main content. When the someone taps the screen I want either the main content to be selected or the ...
4
votes
4answers
91 views

How to round a number to within a certain range?

I have a value like this: 421.18834 And I have to round it mathematical correctly with a mask which can look like this: 0.05 0.04 0.1 For example, if the mask is 0.04, i have to get the value ...
4
votes
2answers
187 views

T-SQL Rounding to 0.0, 0.5, or 1.0

I have an interesting issue where I need to round the result of an AVG() function in a specific manner for use in the ORDER BY clause. These are for use in recipe ratings. Examples of the rounding ...
4
votes
1answer
329 views

Border around a form with rounded corner in c++ builder XE

I have made a C++ Builder XE form with rounded corner with the help of the following code BorderStyle = bsNone; void __fastcall TForm1::FormCreate(TObject *Sender) { HRGN frmrgn; ...
4
votes
3answers
4k views

get decimal part of a number in javascript

I have float numbers like 3.2, 1.6, .... I need to separate the number into the integer and decimal part. For example, a value of 3.2 would be split into two numbers, i.e. 1 and 0.2 Getting the ...
4
votes
3answers
757 views

Why does GCC allow use of round() in C++ even with the ansi and pedantic flags?

Is there a good reason why this program compiles under GCC even with the -ansi and -pedantic flags? #include <cmath> int main (int argc, char *argv []) { double x = 0.5; return ...
4
votes
3answers
6k views

make a button round

im trying to make a JButton round at the (x,y) corrds of (150,210). i want the button to be an oval of the size (40,40). and the buttons background color red. it doesnt need text so i should get a ...
4
votes
4answers
9k views

Where is Round() in C++? [closed]

Duplicate of: round() for float in C++ I'm using VS2008 and I've included math.h but I still can't find a round function. Does it exist? I'm seeing a bunch of "add 0.5 and cast to int" ...
3
votes
4answers
137 views

How to round decimal for 2 decimal places

I have 2 decimal numbers: 1999,9999 1999,99 if I use function decimal.Round(Temp, 2); then I have these results: 2000,00 1999,99 How to make sure that even if there is 1999,999999 it will ...
3
votes
2answers
123 views

Math.Round() seems to be not consistent [closed]

Possible Duplicate: .Net Round Bug In C#: Math.Round(2.5) result is 2 (instead of 3)! Are you kidding me? Code: var d1 = Math.Round(187.5); // 188 var d2 = Math.Round(62.5); // 62 Why ...
3
votes
3answers
115 views

Ruby: Why is 1.025.round(2) rounded to 1.02?

As far as I understand the .round()-functionality in ruby rounds decimals upwards where the last significant number is 5? For example 1.5.round(0) # => 2 (OK) but why does 1.025.round(2) # => 1.02, ...
3
votes
3answers
368 views

Rounding time in Python

What would be an elegant, efficient and Pythonic way to perform a h/m/s rounding operation on time related types in Python with control over the rounding resolution? My guess is that it would require ...
3
votes
3answers
279 views

TSQL Round() inconsistency?

The problem we have is reduced to the following two statements: select convert(float, (convert(float,5741.61)/convert(float, 196.00)) * convert(float,14.00)) as unrounded, round(convert(float, ...
3
votes
1answer
88 views

PHP round return-value

When I run: echo var_dump(round(544/320,3)); it prints: float(1.6:) Why does it return a float of 1.6 with a colon at the end? When it clearly should be 1.7. EDIT: I'm using PHP 5.2.17 on ...
3
votes
1answer
132 views

Curved text in Java

I am looking for the simplest way to draw some text around an ellipse object on my app. I need to create a feeling of "cuddling".. So far, I 've used the Graphics2D class to print my drawings on ...
3
votes
6answers
1k views

PHP Undefined Constant PHP_ROUND_HALF_DOWN

I have some PHP code in a project I'm working on that uses PHP's round function. On my localhost, I don't include any quotes around my mode argument, stating it as just PHP_ROUND_HALF_DOWN. However, ...
3
votes
1answer
182 views

round brackets in xaml syntax

when I'm using ColorAnimation to change Background of control i'm using following syntax: <ColorAnimation Duration="0:0:0.5" ...
3
votes
2answers
455 views

Rounding decimal numbers in perl, wrong result

I hate decimal numbers. For 1.005 I don't get the result I expect with the following code. #!/usr/bin/perl -w use strict; use POSIX qw(floor); my $num = (1.005 * 100) + 0.5; print $num . "\n"; ...
3
votes
5answers
7k views

Round double in two decimal places in C#?

I want to round up double value in two decimal places in c# how can i do that? double inputValue = 48.485; after round up inputValue = 48.49;
3
votes
2answers
128 views

how to convert decimal points?

i have value of 1.564 and 1.565 i need round this value to 1.56 and 1.56,which function suitable for this in c#.
3
votes
3answers
1k views

PHP rounding problem (5.2.3)?

I'm wondering if I found an issue with the rounding in PHP, specifically 5.2.3 (I'm not sure about other versions at the moment): $t = 0; $taxAmount = (5.000 / 100) * 0.7; $t += $taxAmount; ...
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 ...
3
votes
4answers
15k views

How to round up any value in SQL?

I haven't found this for SQL yet, please, help me with rounding up the value this way: 45.01 rounds up to 46. Also 45.49 rounds to 46. And 45.99 rounds up to 46, too. I want everything up one whole ...
3
votes
2answers
5k views

MySql FLOAT datatype and problems with more then 7 digit scale

We are using MySql 5.0 on Ubuntu 9.04. The full version is: 5.0.75-0ubuntu10 I created a test database. and a test table in it. I see the following output from an insert statement: mysql> CREATE ...
3
votes
3answers
2k views

round in PHP shows scientific notation instead of full number

I'm trying to do an echo of a variable containing 1400000. so there is written: echo round(1400000); this gives 1,4E+6 instead of the full number. Anybody an idea on how to display it fully?
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
4answers
82 views

customer balance scale as the exponent of it's currency

i have 2 classes under java hibernate project currency class with variable (exponent) with (BigDecimal) DataType & customer class with variable (balance) with (BigDecimal) DataType i want to ...
2
votes
4answers
81 views

Rounding a number up in Java

I dont get how rounding numbers up to certain decimal places I looked everywhere tried every thing currently I have my program to round up to a whole number with double rACT = Math.ceil(ACT); double ...
2
votes
4answers
121 views

How to round double values but keep trailing zeros

In C# I want a function that rounds a given double to a given amount of decimals. I always want my function to return a value (which can be a string) with the given amount of decimals. If necessary, ...
2
votes
2answers
91 views

What's the disadvantage of mt_rand?

What's the definition of bias in: The distribution of mt_rand() return values is biased towards even numbers on 64-bit builds of PHP when max is beyond 2^32. If it's the kind of bias stated in ...
2
votes
2answers
175 views

Rounding numbers in R to specified number of digits

I have a problem in rounding numbers in R. I have the following data, and I want to round them to 8 decimal digits. structure(c(9.50863385275955e-05, 4.05702267762077e-06, 2.78921491976249e-05, ...
2
votes
1answer
133 views

Rounding % Labels on bar chart in ggplot2

q1 <- qplot(factor(Q1), data=survey, geom="histogram", fill=factor(Q1), ylim=c(0,300)) options(digits=2) q1 + geom_bar(colour="black") + stat_bin(aes(label=..count..), vjust=-2, geom="text", ...
2
votes
3answers
95 views

how do i round in php with keeping the two zeros

I have this php <?php echo round($price, 2); ?> and the $price maybe 1.0000 i want 1.00 but i get only 1 any ideas
2
votes
1answer
91 views

sprintf adds minus sign to zero after rounding

Let's do some rounding > round(-0.001, 2) [1] 0 I receive zero. Now in combination with sprintf > sprintf("%f", round(-0.001,2)) [1] "-0.000000" Why is there a minus sign? I expected ...
2
votes
4answers
186 views

How to round the minute of a timestamp to increments of 15?

I'm building an application to record when my cat has an asthma attack. I'm not interested in the exact time since glancing at the time in interval of 15 minutes is easier to review (e.g. rounding ...

1 2 3 4