Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

ตัวดำเนินการเพิ่มและลดใน C #


ตัวดำเนินการส่วนเพิ่มจะเพิ่มค่าจำนวนเต็มขึ้นหนึ่งค่า นั่นคือ

int a = 10;
a++;
++a;

ตัวดำเนินการ Decrement ลดค่าจำนวนเต็มลงหนึ่งเช่น

int a = 20;
a--;
--a;

ต่อไปนี้คือตัวอย่างการสาธิตการเพิ่มขึ้น -

ตัวอย่าง

using System;

class Program {
   static void Main() {
      int a, b;

      a = 10;
      Console.WriteLine(++a);
      Console.WriteLine(a++);

      b = a;
      Console.WriteLine(a);
      Console.WriteLine(b);
   }
}

ผลลัพธ์

11
11
12
12

ต่อไปนี้คือตัวอย่างที่แสดงตัวดำเนินการลดค่า -

int a, b;
a = 10;

// displaying decrement operator result
Console.WriteLine(--a);
Console.WriteLine(a--);

b = a;
Console.WriteLine(a);
Console.WriteLine(b);