Karar Yapıları-7

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

namespace KararYapilari7
{
    class Program
    {
        static void Main(string[] args)
        {
            int x = 4, y, z = 3;

            y = x++;
            z += y + x;
            z /= 3;

            x = x * z;
            y -= x;
            x = --z;

            Console.WriteLine("X = {0}  Y = {1}  Z = {2}",x,y,z);
            Console.WriteLine(x);
            Console.WriteLine(y);
            Console.WriteLine(z);
            Console.ReadKey();

        }
    }
}