c#)

  1. Rooster

    C# ÖZEL FORMATLI İŞLEMLER

    Ekrana yazdırılan ifadeleri özel formatlar kullanarak daha okunabilir ve daha anlamlı bir hale getirebiliriz. Console.WriteLine("{0:yy}",DateTime.Now); Console.ReadKey(); Console.WriteLine("ara beni{0:(###) ### ## ##}",53821234567); Console.ReadKey(); int x; Console.Write("Dönüştürülücek...
  2. Rooster

    C# KÜÇÜK EŞİTTİR,BÜYÜK EŞİTTİR

    Boolean sonuc; double not1, not2,not3; not1 = 3.67; not2 = 3.20; sonuc = not1 >= not2; //true not3 = 3.20; sonuc = not2 <= not3; //true Console.WriteLine("sonuc : " + sonuc); Console.ReadLine(); Boolean sonuc; byte yas1 = 15, yas2 = 18; sonuc = yas2 < yas1; Console.WriteLine("sonuc : " +...
  3. Rooster

    C# FAKTORİYEL BULMA

    int sayi,i,f=1; Console.WriteLine("Faktoriyeli alınacak sayı girin"); sayi = Convert.ToInt16(Console.ReadLine()); for (i=1; i <= sayi; i++) { f= i * f; } Console.WriteLine("Cevap : " + f); Console.ReadLine();

Theme editor

Top Bottom