Arşiv

Arşiv ‘Operatörler’ Kategorisi

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; [...]

0 defa okundu | Henüz yorum yok.
Ağu 10th, 2010 | Filed under Operatörler
Etiketler: ,