private static void isPrime(int i)
{
bool IsPrime = true;
//Console.WriteLine(Math.Sqrt(i));
for (int j = 2; j <= Math.Sqrt(i); j++)
{
if (i % j == 0)
{
IsPrime = false;
break;
}
}
if (IsPrime)
{
Console.WriteLine("我是素数。");
}
else
{
Console.WriteLine("我是合数。");
}
}
{
bool IsPrime = true;
//Console.WriteLine(Math.Sqrt(i));
for (int j = 2; j <= Math.Sqrt(i); j++)
{
if (i % j == 0)
{
IsPrime = false;
break;
}
}
if (IsPrime)
{
Console.WriteLine("我是素数。");
}
else
{
Console.WriteLine("我是合数。");
}
}