上传者: zyzhanzhan
|
上传时间: 2022-01-27 16:09:50
|
文件大小: 221KB
|
文件类型: -
两个整数之间的素数统计并进行升序降序排列
listBox1.Items.Clear();
if (radioButton1.Checked == true)
{
for (i = start; i <= end; i++)
{
b = true;
for (j = 2; j 0)
{
listBox1.Items.Add(i.ToString());
}
}
if (listBox1.Items.Count == 0) { listBox1.Items.Add("这两个整数之间没有素数"); }
}