Operatörler_1

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Operatorler1
{
    class Program
    {
        static void Main(string[] args)
        {

            int x = 3, y = 5, z = 7;

            y = x++;
            z += x;
            ++z;
            y += ++z;

            x /= 2;
            x = x / 2;

            y *= x;
            z = z / x;

            int kalan = z % y;//kalan verir
            int bolum = z / y;
        }
    }
}