阅读量:0
要在C#中保留双精度数的小数位数,可以使用以下方法:
- 使用ToString方法
double num = 10.56789; string result = num.ToString("0.00"); // 保留两位小数 Console.WriteLine(result); // 输出:10.57
- 使用String.Format方法
double num = 10.56789; string result = String.Format("{0:0.00}", num); // 保留两位小数 Console.WriteLine(result); // 输出:10.57
- 使用Math.Round方法
double num = 10.56789; double result = Math.Round(num, 2); // 保留两位小数 Console.WriteLine(result); // 输出:10.57
以上是三种常用的方法来保留双精度数的小数位数。您可以根据自己的需要选择合适的方法。