Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
629 views
in Technique[技术] by (71.8m points)

c# - Combine two integers (one containing the integer part, the other the decimal part) into a floating point number

How do I produce a double value by combining two integers? I already tried searching but I can't find the answer that I'm looking for.

It goes like this:

int wholeNumber = 2;
int decimal = 25;

I want to make a double that results into 2.25.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Cheating solution goes like this:

string number = wholeNumber + "." + decimal
double doubleNumber = Double.Parse(number);

Clean solution would involve checking how many values you have in the 'decimal', dividing by 10^amount and adding them

As was pointed out - decimal seperator is cultural-specific - so the completly correct version is

string number = wholeNumber + System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSepar??ator + decimal
double doubleNumber = Double.Parse(number);

(I kept the top one because its easier to understand)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...