在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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。