Computer >> Máy Tính >  >> Lập trình >> C#

Toán tử bộ phận trong C #

Toán tử chia được sử dụng trong C # để chia tử số cho mẫu số, ví dụ:9/3

Toán tử chia nằm dưới Toán tử số học trong C #. Hãy để chúng tôi xem một ví dụ hoàn chỉnh để tìm hiểu cách triển khai các toán tử Số học trong C #, trong đó chúng tôi sẽ thấy cách làm việc với toán tử chia.

result = num1 / num2;
Console.WriteLine("Division: Value is {0}", result);

Ở trên, chúng tôi đã sử dụng toán tử chia trên num1 và num2.

Sau đây là ví dụ đầy đủ.

Ví dụ

using System;
namespace Sample {
   class Demo {
      static void Main(string[] args) {
         int num1 = 50;
         int num2 = 25;
         int result;
         result = num1 + num2;
         Console.WriteLine("Value is {0}", result);
         result = num1 - num2;
         Console.WriteLine("Value is {0}", result);
         result = num1 * num2;
         Console.WriteLine("Value is {0}", result);
         result = num1 / num2;
         Console.WriteLine("Division: Value is {0}", result);
         result = num1 % num2;
         Console.WriteLine("Value is {0}", result);
         result = num1++;
         Console.WriteLine("Value is {0}", result);
         result = num1--;
         Console.WriteLine("Value is {0}", result);
         Console.ReadLine();
      }
   }
}

Đầu ra

Value is 75
Value is 25
Value is 1250
Division: Value is 2
Value is 0
Value is 50
Value is 51