console uygulamaları etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
console uygulamaları etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

12 Aralık 2014 Cuma

Dikdörtgenin Çevresini ve Alanını Hesaplayan Program

Double k1, k2, cevre, alan;
Console.WriteLine(“Kısa Kenarı giriniz.”);
k1 = Convert.ToInt16(Console.ReadLine());
Console.WriteLine(“Uzun Kenarı giriniz.”);
k2 = Convert.ToInt16(Console.ReadLine());
cevre = (k1 + k2)*2;
alan = (k1 * k2);
Console.WriteLine(“Dikdörtgenin çevresi {0} ve alanı {1} dir”,cevre,alan);

Console.ReadKey();

24 Nisan 2014 Perşembe

girilen sayının tekmiçiftmi olduğunu deneyen program

 static int dene(int x)
        {
            int dene = x;
            if (x % 2 == 0)
            Console.WriteLine("sayı çiftdir");
            else
            Console.WriteLine("sayı tekdir");
            return dene;
        }
       static void Main(string[] args)
        {
            int x, sonuç;
            Console.WriteLine("sayıyı giriniz: ");
            x = Convert.ToInt32(Console.ReadLine());
            sonuç = dene(x);
         
            Console.ReadKey();

20 Nisan 2014 Pazar

metodlarla toplama-çıkarma-çarpma-bölme yapan program

class Program
    {
        static int toplama  (int a,int b)
        {
            int toplama = (a + b);
            return toplama;
        }
        static int çıkarma (int a,int b)
        {
            int çıkarma = (a - b);
            return çıkarma;
        }
        static int çarpma (int a,int b)
        {
            int çarpma = (a * b);
            return çarpma;
        }
        static int bölme (int a,int b)
        {
            int bölme = (a / b);
            return bölme;
            }
         
        static void Main(string[] args)
        {
            int a, b, s1, s2, s3, s4;
            Console.WriteLine("1.sayıyı gir: ");
            a = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("2.sayıyı gir: ");
            b = Convert.ToInt32(Console.ReadLine());
            s1 = toplama(a, b);
            s2 = çıkarma(a, b);
            s3 = çarpma(a, b);
            s4 = bölme(a, b);
            Console.WriteLine("toplama {0}", s1);
            Console.WriteLine("çıkarma {0}", s2);
            Console.WriteLine("çarpma {0}", s3);
            Console.WriteLine("bölme {0}", s4);
            Console.ReadKey();
         

         


        }
    }
}


      LÜTFEN YORUM YAPMAYI UNUTMAYINIZ....

29 Mart 2014 Cumartesi

4 işlem yapan program

 int sonuc;
            sonuc = dörtıslem.cıkar(5, 5);
            dörtıslem.mesaj(sonuc);
        }
    class dörtıslem
     {
            public static int topla(int i, int j)
            {
                return (i + j);
            }
            public static int cıkar(int i, int j)
            {
                return (i - j);
            }
            public static int çarp(int i, int j)
            {
                return (i * j);
            }
            public static int bol(int i, int j)
            {
                return (i / j);
            }
            public static void mesaj(int i)
            {
                Console.WriteLine(i);
                Console.ReadLine();

27 Mart 2014 Perşembe

girilen A-Z‟ye harfleri tersten ekrana yazdıran program

char[] alfabe = new char[26]; char harf; int i=0;
 Console.WriteLine("A'dan Z'ye Ġngiliz Alfabesi");
Console.WriteLine("---------------------------");
 for (harf = 'A'; harf <= 'Z'; harf++)
 {
 alfabe[i] = harf; Console.Write(alfabe[i] + " ");
 i++;
 }
Console.WriteLine("\n"); Array.Reverse(alfabe);
Console.WriteLine("Z'den Z'ya Ġngiliz Alfabesi");
Console.WriteLine("---------------------------");
 for (i = 0; i < 26; i++) Console.Write(alfabe[i] + " ");