Ver os números primos em c#
static void CheckOddEven(int num)
{
if (num % 2 == 0)
{
Console.Write("\nYour number is even.\n");
}
else
{
Console.Write("\nYour number is odd.\n");
}
}
static void Main(string[] args)
{
int num = 0;
string answer = "Y";
while(answer== "Y")
{
Console.Write("Please enter a number and I will tell you whether it is odd or even.\n");
...