Console.Write("Hoeveel worpen wil je simuleren: ");
int worpen = int.Parse(Console.ReadLine());
Random r = new Random(worpen);
int willekeur = r.Next(1, worpen);
double willekeur1 = willekeur;
Math.Round(willekeur1);
for (int i = 1; i <= 12; i++)
{
Console.WriteLine("ik gooide "+willekeur+" ("+Math.Round(willekeur1,2,)+")");
willekeur = r.Next(1, worpen);
}
Console.ReadLine();
私は 'willekeur1'に10進数のコンマを含む数字を入力します。その一例:12456 - > 12456intをコンマで小数点に変換するには?
可能な複製物eの[.NET String.Format()は数千位のカンマを数値に追加する](http://stackoverflow.com/questions/105770/net-string-format-to-add-commas-in-thousands-place -for-a-number) –
'Int'sには小数点またはカンマがありません。文字列に変換するときは、現在のカルチャ(または指定したカルチャ)によってフォーマットが決まります。 ['string.Format(number、format)'](https://msdn.microsoft.com/en-us/library/system.string.format(v = vs.110).aspx)または['double。 ToString(format) '](https://msdn.microsoft.com/en-us/library/kfsatb94(v = vs.110).aspx)を使用して、結果を表示する形式を指定します。 –
あなたの現在の状況は非常に不明です尋ねる(特に無関係の何かを回答として受け入れる)。おそらく 'willekeur1/1000.0'を探しているだけでしょうか? –