Home > Back-end >  How do I get a value from a listbox instead of a textbox, my code is as follows
How do I get a value from a listbox instead of a textbox, my code is as follows

Time:12-15

enter image description hereI'm trying to make a program that shows the prime numbers of the numbers added to the listbox from the textbox and then written in the listbox, with a message box, can anyone help me, where am I wrong?

private void button2_Click(object sender, EventArgs e)

    int deneme = 0;
    int sayilarim = Convert.ToInt32(textBox1.Text);

    for (int i = 2; i < sayilarim; i  ) {
        if (sayilarim % i == 0)
            deneme  ;
        }
        if (deneme != 0){                       
            listBox1.Items.Add(textBox1.Text   " Asal Sayi değildir.");
            MessageBox.Show("Bu Bir Asal Sayi Değildir.");
        } else {
            listBox1.Items.Add(textBox1.Text   " sayidir.");
            MessageBox.Show("Bu Bir Asal Sayi.");
        }
        textBox1.Clear();
    }                
    MessageBox.Show(listBox1.Items.Count.ToString()   " Adet asal sayı var.");

CodePudding user response:

First of all, your button2 is not getting value of Listbox1 , it takes value of textbox. you have to take items of Listbox1 and put them in a list or etc. and make your algorithm for them. here is some sample code.

öncelikle buton 2 nin altında sayıları listbox içinden değil textbox'tan almışsın, onu düzeltmen gerek. listenin elemanlarında dönüp int bir listeye atama yapabilirsin. Bu adımları düzenledikten sonra altta verdiğim örnek kodu bir dene bakalım,

            StringBuilder str = new StringBuilder();
            str.AppendLine("Asal Olan Sayilar:");
               
            List<int> lst = new List<int>(); // {  3, 4, 5, 10 };
            for (int i = 0; i < ListBox1.Items.Count; i  )
            {
                lst.Add(Convert.ToInt32(ListBox1.Items[i].ToString()));
            }
          
    
                bool asalMi = true;
                foreach (int value in lst)
                {
                    asalMi = true;
                    for (int i = 2; i < value; i  )
                    {
                        if (value % i == 0)
                        {
                            asalMi = false;
                        }
                    }
    
                    if (asalMi)
                        str.AppendLine($"{value.ToString()} asaldir.");
                }
    
                MessageBox.Show(str.ToString);
  •  Tags:  
  • c#
  • Related