Programda BOOL kullanma etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Programda BOOL kullanma etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

29 Mart 2014 Cumartesi

Programda BOOL kullanma

bool a = 5 <= 5;
            bool b = 5 >= 5;
            bool c = 8 >= 8;
            bool d = 15 <= 15;
            Console.WriteLine("{0}n{1}n{2}n{3}n", a, b, c, d);
            Console.ReadLine();
        }
    }
METODLAR
BASİT BİR TOPLAMA
static void Main(string[] args)
        {
            int a;
            a = topla(3, 5);
            Console.WriteLine(a);
            Console.ReadLine();
        }
        static int topla(int i, int j)
        {
            int sonuc;
            sonuc = i + j;
            return sonuc;