using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AsalSayıBulma
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double sayi = 1;
bool durum = true;
while (sayi < 100)
{
sayi++;
for (int i = 2; i < sayi; i++)
{
if (sayi % i == 0)
durum = false;
}
if (durum == true)
{
listBox1.Items.Add(sayi + "\t sayısı asal sayıdır");
}
durum = true;
}
MessageBox.Show(listBox1.Items.Count + "tane asal sayı vardır ");
}
}
}
Hiç yorum yok:
Yorum Gönder