「C#」数値の符号を反転するサンプル

書式
int 変数名 =値
int 変数名2 = -(値)

マイナスを指定する時は、カッコを付けても付けなくてもOKです。マイナス指定する事で数値を反転します。
使用例

using System;

namespace TestDemo
{
  class Program
  {
    static void Main(string[] args)
    {
      //変数定義
      int ta = 123;
     int tb = -456;

     int result1 = -(ta);
     Console.WriteLine(result1);
      int result2 = -(tb);
      Console.WriteLine(result2);  
    }
  }
}

実行結果
-123
456

C#

Posted by arkgame