在這裏,我們將了解Math 類的IEEERemainder() 方法。此方法用於獲取雙精度值的餘數。
用法:
double Math.IEEERemainder(double dividend, double divisor);
參數:
- dividend: 被除數。
- divisor:除數。
返回值:
它返回雙精度值的餘數。
程序:
下麵給出了演示使用Math 類的IEEERemainder() 方法的源代碼。給定的程序已成功編譯並執行。
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
double REM = 0;
REM = Math.IEEERemainder(21.24, 4.0);
Console.WriteLine("REMAINDER is:" + REM);
}
}
輸出:
REMAINDER is:1.24 Press any key to continue . . .
相關用法
- C# Math Cosh()用法及代碼示例
- C# Math Truncate()用法及代碼示例
- C# Math BigMul()用法及代碼示例
- C# Math Cos()用法及代碼示例
- C# Math Sign()用法及代碼示例
- C# Math Exp()用法及代碼示例
- C# Math Tanh()用法及代碼示例
- C# Math Tan()用法及代碼示例
- C# Math Abs()用法及代碼示例
- C# Math Acos()用法及代碼示例
- C# Math Sinh()用法及代碼示例
- C# Math Sin()用法及代碼示例
- C# Math Asin()用法及代碼示例
- C# Math DivRem()用法及代碼示例
- C# Math Round()用法及代碼示例
- C# Math Atan()用法及代碼示例
- C# Math Log()用法及代碼示例
- C# MathF.Log10()用法及代碼示例
- C# Math.Floor()用法及代碼示例
- C# Math.Max()用法及代碼示例
注:本文由純淨天空篩選整理自 C# program to demonstrate the use of IEEERemainder() method of Math class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。