Tagged Questions

0
votes
4answers
94 views

How to properly display a price up to two decimals (cents) including trailing zeros in Java?

There is a good question on rounding decimals in Java here. But I was wondering how can I include the trailing zeros to display prices in my program like: $1.50, $1.00 The simple solution of …
3
votes
3answers
149 views

What’s the best technique for handling US Dollar calculations in Perl?

What's the best technique for handling US Dollar calculations in Perl? Especially: the following needs to work: $balance = 10; $payment = $balance / 3; # Each payment should be 3.33. How best to …
1
vote
2answers
236 views

Leave only two decimal places after the dot.

public void LoadAveragePingTime() { try { PingReply pingReply = pingClass.Send("logon.chronic-domination.com"); double AveragePing = …
2
votes
3answers
166 views

General programming - Decimal numbers, floats

I'm probably completely wrong, and I don't really know anything about it, but I have a question about decimal number data types in programming languages. I understand that floats aren't completely …
2
votes
3answers
126 views

double string conversion and locale

A common international issue is the conversion of double values represented in strings. These stuff is found in a lot of areas. Starting with csv files which are either called comma separated or …
3
votes
5answers
338 views

How do you calculate floating point in a radix other than 10?

Given Wikipedia's article on Radix Point, how would one calculate the binary equivalent of 10.1 or the hex equivalent of 17.17? For the former, what is the binary equivalent of a tenth? For the …
0
votes
5answers
245 views

How to format a decimal

Using C#, I want to format a decimal to only display two decimal places and then I will take that decimal and subtract it to another decimal. I would like to be able to do this without having to turn …
2
votes
3answers
583 views

In Perl, how can I limit the number of places after the decimal point but have no trailing zeroes?

This question is similar to "dropping trailing ‘.0’ from floats", but for Perl and with a maximum number of digits after the decimal. I'm looking for a way to convert numbers to string format, …
1
vote
3answers
694 views

how do you modify the decimal point length in an sql table? [closed]

I have a decimal(18,4) column on a Microsoft SQL 2005 database that currently is storing 4 decimal places. I want it to store 6 places, so I altered the table to make the column decimal(18,6). It does …