在C#中,MathF.Truncate(Single)是MathF类方法,用于计算指定单个数字或单精度浮点数的整数部分。
用法:
public static float Truncate (float x);
参数:
- x:这是将被截断的指定数字,并且此参数的类型为System.Single。
返回类型:此方法仅返回x的整数部分,而舍弃小数部分。此方法的类型为System.Single。
例:
// C# Program to illustrate the
// MathF.Truncate(Single) Method
using System;
class Geeks {
// Main Method
public static void Main()
{
// varibles of float type
float x1 = 7845.56478452f;
float x2 = 12548.3242f;
// using method and displaying result
Console.WriteLine(MathF.Truncate(x1));
Console.WriteLine(MathF.Truncate(x2));
}
}
输出:
7845 12548
相关用法
- C# MathF.Exp()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Cbrt()用法及代码示例
- C# Char.GetTypeCode()用法及代码示例
- C# Char.GetHashCode()用法及代码示例
- C# MathF.Atan()用法及代码示例
- C# BitArray.RightShift()用法及代码示例
- C# BitArray.LeftShift()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 MathF.Truncate() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。