24 Kasım 2013 Pazar

C# Switch yapısı ile ilgili bir örnek


c#
c# 
  private void button1_Click(object sender, EventArgs e)
        {
            int a;
            a = Convert.ToInt32(textBox1.Text);
            switch (a)
            {
                case 1 :
                    textBox2.Text = "bir";
                    break;
                case 2 :
                    textBox2.Text="iki";
                    break;
                case 3 :
                    textBox2.Text = "üç";
                    break;
                default:
                    textBox2.Text = "1-3 arası sayı giriniz";
                    break;

            }

0 yorum :

Yorum Gönder