14 Temmuz 2014 Pazartesi

Sayfa Sayısını Bulma

Aşağıdaki kodlar hesapla Sayfa Sayısını Bul butonun içine yazılır .

private void button1_Click(object sender, EventArgs e)
        {
            int sayi1,i,toplam,say;
            say = 0;
            toplam = 0;
            sayi1 = Convert.ToInt16(textBox1.Text);
          
           
            if (sayi1 < 10)
            {
                for (i = 1; i <= sayi1; i++)
                {
                    say++;
                   
                }
                toplam = say;
                label4.Text = "Kullanılan toplam Rakam :" + toplam;

            }
            else if (sayi1 < 100)
            {
                for (i = 10; i <= sayi1; i++)
                {
                    say++;

                }
                toplam = say * 2 + 9;
                label4.Text = "Kullanılan toplam Rakam :" + toplam;
            }
            else if (sayi1 < 1000)
            {
                for (i = 100; i <= sayi1; i++)
                {
                    say++;

                }
                toplam = say * 3 + 99;
                label4.Text = "Kullanılan toplam Rakam :" + toplam;
            }
            else { label4.Text = "999' e kadar hesaplar:)"; }

        }

Kodun Çalıştırılmış Hali


Hiç yorum yok:

Yorum Gönder