Some Operator on int

image_pdfimage_print
   
 
using System;

public class MyMainClass10 {
  static void Main(string[] args)  {
    int   a,b,c,d,e,f;

    a = 1;
    b = a + 6;
    c = b - 3;
    d = c * 2;
    e = d / 2;
    f = e % 2;
  }
}


           
         
     


This entry was posted in Data Types. Bookmark the permalink.