Ich möchte meine Antwort 1 Dezimalstelle runden. zum Beispiel: 6.7, 7.3, usw. Aber wenn ich Math.round verwende, kommt die Antwort immer ohne Dezimalstellen. Zum Beispiel: 6, 7Runde auf 1 Dezimalstelle in C#
Hier ist der Code, den ich verwendet:
int [] nbOfNumber = new int[ratingListBox.Items.Count];
int sumInt = 0;
double averagesDoubles;
for (int g = 0; g < nbOfNumber.Length; g++)
{
nbOfNumber[g] = int.Parse(ratingListBox.Items[g].Text);
}
for (int h = 0; h < nbOfNumber.Length; h++)
{
sumInt += nbOfNumber[h];
}
averagesDoubles = (sumInt/ratingListBox.Items.Count);
averagesDoubles = Math.Round(averagesDoubles, 2);
averageRatingTextBox.Text = averagesDoubles.ToString();
Ihre Variablen nicht –
bearbeitet definiert ... Dank –
http://stackoverflow.com/questions/257005/how-do-you-round-a-number-to- zwei-dezimal-places-in-c – Transcendent