此方法用於獲得將指定的十進製值乘以負1的結果。
用法: public static decimal Negate (decimal a);
參數:
a:此參數指定要轉換的小數。
返回值:十進製數字,其值為a,但符號相反。但是如果a為零,則為零。
以下示例程序旨在說明Decimal.Negate(Decimal)方法的用法:
示例1:當a為正時
// C# program to demonstrate the
// Decimal.Negate(Decimal) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring the decimal variable
Decimal a = 127.97m;
// using Negate() method;
Decimal value = Decimal.Negate(a);
// Display the negative value
Console.WriteLine("The negative value "+
"is : {0}", value);
}
}
輸出:
The negative value is : -127.97
示例2:當a為負數時
// C# program to demonstrate the
// Decimal.Negate(Decimal) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring the decimal variable
Decimal a = -12.39m;
// using Negate() method;
Decimal value = Decimal.Negate(a);
// Display the value after
// using negate method
Console.WriteLine("The value is : {0}",
value);
}
}
輸出:
The value is : 12.39
示例3:如果a為零。
// C# program to demonstrate the
// Decimal.Negate(Decimal) Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// Declaring the decimal variable
Decimal a = 0.00m;
// using Negate() method;
Decimal value = Decimal.Negate(a);
// Display the Negate value
Console.WriteLine("The Negate value "+
"is : {0}", value);
}
}
輸出:
The Negate value is : 0.00
參考:
相關用法
注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 Decimal.Negate() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。