C# 中将浮点数四舍五入到小数点后两位
在 C# 中,我们可以使用不同的方法轻松舍入一个浮点数,例如 decimal.Round()
和 Math.Round()
。
本文将重点介绍将十进制值浮点数舍入到两个十进制位的方法。
C# 使用 decimal.Round()
方法将十进制值舍入到两个十进制位
decimal.Round()
方法是将十进制数字四舍五入为指定的位数的最简单的方法。此方法最多允许 28 个小数位。
此方法的正确语法如下:
decimal.Round(decimalValueName, integerValue);
示例代码:
using System;
public class RoundDecimal {
public static void Main() {
decimal decimalValue = 123.456M;
Console.WriteLine("The Decimal Value Before Applying Method: {0}", decimalValue);
Console.WriteLine();
decimalValue = decimal.Round(decimalValue, 2);
Console.WriteLine("The Decimal Value After Applying Method: {0}", decimalValue);
}
}
输出:
The Decimal Value Before Applying Method: 123.456
The Decimal Value After Applying Method: 123.46
如果要舍入的小数位数的值不在 0-28 范围内,则此方法将抛出 ArgumentOutOfRangeException
。然后,通过使用 try-catch
块来处理该异常。
还有另一种使用 decimal.Round()
方法的方式,示例代码如下:
示例代码:
using System;
public class RoundDecimal {
public static void Main() {
decimal decimalValue = 12.345M;
Console.WriteLine("The Decimal Value Before Applying Method: {0}", decimalValue);
Console.WriteLine();
decimalValue = decimal.Round(decimalValue, 2, MidpointRounding.AwayFromZero);
Console.WriteLine("The Decimal Value After Applying Method: {0}", decimalValue);
}
}
输出:
The Decimal Value Before Applying Method: 12.345
The Decimal Value After Applying Method: 12.35
MidpointRounding.AwayFromZero
用于将数字从零舍入。它的对应对象是 MidpointRounding.ToEven
,它将给定的十进制数四舍五入到最接近的偶数。
示例代码:
using System;
public class RoundDecimal {
public static void Main() {
decimal decimalValue = 12.345M;
Console.WriteLine("The Decimal Value Before Applying Method: {0}", decimalValue);
Console.WriteLine();
decimalValue = decimal.Round(decimalValue, 2, MidpointRounding.ToEven);
Console.WriteLine("The Decimal Value After Applying Method: {0}", decimalValue);
}
}
输出:
The Decimal Value Before Applying Method: 12.345
The Decimal Value After Applying Method: 12.34
C# 使用 Math.Round()
方法将十进制值四舍五入到两个十进制位
Math.Round()
方法与 decimal.Round()
相同。
此方法的正确语法如下:
Math.Round(decimalValueName, integerValue);
示例代码:
using System;
public class RoundDecimal {
public static void Main() {
decimal decimalValue = 123.456M;
Console.WriteLine("The Decimal Value Before Applying Method: {0}", decimalValue);
Console.WriteLine();
decimalValue = Math.Round(decimalValue, 2);
Console.WriteLine("The Decimal Value After Applying Method: {0}", decimalValue);
}
}
输出:
The Decimal Value Before Applying Method: 123.456
The Decimal Value After Applying Method: 123.46
就像 decimal.Round()
方法一样,它也会抛出异常,然后使用 try-catch
块来处理。我们也可以像 decimal.Round()
方法那样指定 MidpointRounding
方法。
相关文章
在 C# 中按值对字典排序
发布时间:2024/01/19 浏览次数:153 分类:编程语言
-
有两种主要方法可用于按 C# 中的值对字典进行排序:list 方法和 Linq 方法。使用 C# 中的 List 方法按值对字典进行排序。C# 字典数据结构以 key:value 对的形式存储数据。
在 C# 中更新字典值
发布时间:2024/01/19 浏览次数:72 分类:编程语言
-
本教程演示如何使用键作为索引来更新 C# 字典中的值。dictionary 是一种集合类型,与只能通过索引或值本身访问值的数组或列表不同,字典使用键和值对来存储其数据。
在 C# 中检查字典键是否存在
发布时间:2024/01/19 浏览次数:142 分类:编程语言
-
本文教我们如何检查或检测 C# 中是否存在字典键。Dictionary 倾向于映射键和值。它包含特定值映射到的特定键。不允许有重复的键,这是字典的全部目标。
C# 中的字典与哈希表
发布时间:2024/01/19 浏览次数:166 分类:编程语言
-
本指南将讨论 C# 中 Dictionary 和 Hashtable 之间的区别。你应该更喜欢哪一个?本指南将讨论 C# 中 Dictionary 和 Hashtable 之间的区别。
将 JSON 字符串转换为 C# 对象
发布时间:2024/01/19 浏览次数:73 分类:编程语言
-
本教程演示如何使用 Newtonsoft.Json 包或 JavaScriptSerializer 提供的 DeserializeObject 函数将 JSON 字符串转换为 C#
C# 将对象转换为 JSON 字符串
发布时间:2024/01/19 浏览次数:157 分类:编程语言
-
本文介绍如何将 C# 对象转换为 C# 中的 JSON 字符串的不同方法。它介绍了 JavaScriptSerializer().Serialize(),JsonConvert.SerializeObject()和 JObject.FromObject()之类的方法。
C# 解析 JSON
发布时间:2024/01/19 浏览次数:106 分类:编程语言
-
本文介绍如何使用 C# 解析 JSON 的不同方法,比如 JsonConvert.DeserializeObject(),JObject.Parse()和 JavaScriptSerializer()之类的方法。
获取 C# 中 foreach 循环当前迭代的索引
发布时间:2024/01/19 浏览次数:88 分类:编程语言
-
本文介绍如何在 C# 中获取 foreach 循环当前迭代的索引。在 C# 中,我们主要有两个循环,for 循环和 foreach 循环。foreach 循环被认为是最好的,因为它适用于所有类型的操作。
C# 中的十进制文字
发布时间:2024/01/19 浏览次数:194 分类:编程语言
-
本教程解释了 C# 中的十进制文字以及如何使用它在 C# 中初始化变量时,你可能必须明确指定你希望它用于数值数据类型的数据类型。