C#求10以内所有素数的积
2个回答
展开全部
using System;
static class Prime
{
static void Main()
{
int p = 1;
for (int j, i = 2; i <= 10; i++)
{
for (j = 2; j < i; j++) if (i % j == 0) break;
if (i == j) p *= i;
}
Console.WriteLine(p);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int reslut = SuShu(1, 20);
}
static int SuShu(int start,int end)
{
int result = 1;
List<int> suShus=new List<int>();
for (int i = start; i <= end; i++)
{
bool isSuShu = true;
for (int j = 2; j <i; j++)
{
if (i % j == 0)
{
isSuShu = false;
break;
}
}
if (isSuShu)
{
suShus.Add(i);
}
}
foreach (int c in suShus)
{
result = result * c;
}
return result;
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int reslut = SuShu(1, 20);
}
static int SuShu(int start,int end)
{
int result = 1;
List<int> suShus=new List<int>();
for (int i = start; i <= end; i++)
{
bool isSuShu = true;
for (int j = 2; j <i; j++)
{
if (i % j == 0)
{
isSuShu = false;
break;
}
}
if (isSuShu)
{
suShus.Add(i);
}
}
foreach (int c in suShus)
{
result = result * c;
}
return result;
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |