1 Aralık 2013 Pazar

C# da Belli Sayı Aralarındaki Sayıları Çarpma

c#
c#
        private void button1_Click(object sender, EventArgs e)
        {
            int n, top=0, carp=1,a=2;
            n = Convert.ToInt32(textBox1.Text);
            if (n % 2 == 0)
            {
                while (a<=n)
                {
                    top = top + a;
                    carp = carp * a;
                    a = a + 2;
                }
                label3.Text = top.ToString();
                label5.Text = carp.ToString();
            }
            else
            {
                label3.Text = "çift sayı giriniz";
                label5.Text = "çift sayı girniz";

            }

0 yorum :

Yorum Gönder