C# の数値の場合は、int 型を使用します。これは、正または負の整数を表します。
C# で算術演算子の使用方法を見てみましょう - 2 つの整数を追加します
using System; using System.Linq; class Program { static void Main() { int x = 20; int y = 30; int sum = 0; sum = x + y; Console.WriteLine(sum); } }
次に、これらの算術演算子の順序、つまり演算子の優先順位を理解しましょう。
演算子の優先順位によって、式内の用語のグループ化が決まります。これは式の評価に影響します。一部の演算子は他の演算子よりも優先順位が高くなります。たとえば、乗算演算子は加算演算子よりも優先順位が高くなります。
たとえば、x = 9 2 * 5; ここでは、演算子 * の方が優先順位が高いため、x には 55 ではなく 19 が割り当てられ、最初に 2*5 が計算され、次に 9 がそれに追加されます。
次の例は、演算子の順序を示しています -
using System; namespace Demo { class Program { static void Main(string[] args) { int a = 200; int b = 100; int c = 150; int d = 50; int res; res = (a + b) * c / d; Console.WriteLine("Value of (a + b) * c / d is : {0}", res); res = ((a + b) * c) / d; Console.WriteLine("Value of ((a + b) * c) / d is : {0}", res); res = (a + b) * (c / d); Console.WriteLine("Value of (a + b) * (c / d) : {0}",res); res = a + (b * c) / d; Console.WriteLine("Value of a + (b * c) / d : {0}",res); Console.ReadLine(); } } }
以上がC# の数値の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。