Tagged Questions

11
votes
2answers
547 views

How can I make a “working” repeating decimal representation of a rational number?

I've figured out how to display the repeating part of a repeating decimal using OverBar. repeatingDecimal doesn't actually work as a repeating decimal. I'd like to make a variation of it that looks ...
2
votes
3answers
96 views

Precision of decimal number in Java, C, C++ and others

Let's say we have this kind of loop (pseudocode) double d = 0.0 for i in 1..10 { d = d + 0.1 print(d) } In C with printf("%f", d) I get this: 0.100000 0.200000 0.300000 ... 1.000000 In ...
2
votes
3answers
572 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 ...
1
vote
2answers
376 views

C# unlimited significant decimal digits (arbitrary precision) without java [closed]

Possible Duplicate: what is the equivalent for java class : BigDecimal in c# I know in this post: Arbitrary precision decimals in C#? says to use java.math.BigDecimal, but I don't have J# ...
0
votes
3answers
50 views

How to include decimal point to string in vb.net?

How to add decimal point (with two decimal places) to string, without converting string to decimal? For example (Dim str1 as String), regardless str1 has value: 100 , 100.0 , 100.00, or 100.5 , ...
0
votes
0answers
18 views

Calculatin with decimals

I have a database that calculates a discount from a base price. Some discounts need to be fractional ie 28.5% discount. I'm using DECIMAL for the type with at LENGTH of 10,2. The database accepts ...
0
votes
1answer
538 views

How do I set the correct decimal separator in IIS 6.0?

I hope you can help me here... I have a conflict with the decimal separator on my host's dedicated server. The DB (SQL SERVER 2005) uses dot as decimal separator. As a fact, if you query it directly ...