在这里,我们将了解Math 类的DivRem() 方法。此方法用于计算两个给定数字的商,它还返回第三个输出参数中的余数。
用法:
int Math.DivRem(int dividend, int divisor, out int remainder);
参数:
- dividend: 被除数。
- divisor:除数。
- remainder: 剩下的。
返回值:
它根据传递的被除数和除数返回商。
程序:
下面给出了演示使用Math 类的DivRem() 方法的源代码。给定的程序已成功编译并执行。
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
int REM = 0;
int QUOTIENT = 0;
QUOTIENT = Math.DivRem(21, 4, out REM);
Console.WriteLine("QUOTIENT is:" + QUOTIENT);
Console.WriteLine("REMAINDER is:" + REM);
}
}
输出:
QUOTIENT is:5 REMAINDER is:1 Press any key to continue . . .
相关用法
- C# Math Cosh()用法及代码示例
- C# Math IEEERemainder()用法及代码示例
- 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 Round()用法及代码示例
- C# Math Atan()用法及代码示例
- C# Math Log()用法及代码示例
- C# MathF.Log10()用法及代码示例
- C# Math.Floor()用法及代码示例
- C# Math.Max()用法及代码示例
注:本文由纯净天空筛选整理自 C# program to demonstrate the use of DivRem() method of Math class。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。