C# program to print the prime numbers
Program.cs
bool isPrime = true;
Console.WriteLine("———————————————————————————————————————————");
Console.WriteLine("Program to print the prime numbers");
Console.WriteLine("———————————————————————————————————————————");
for (int i = 2; i <= 50; i++)
{
    for (int j = 2; j <= 50; j++)
    {
        if (i != j && i % j == 0)
        {
            isPrime = false;
            break;
        }
    }
    if (isPrime)
    {
        Console.WriteLine(i + " ");
    }
    isPrime = true;
}
Console.WriteLine("———————————————————————————————————————————");
Output
kodingwindow@kw:~/csharp$ dotnet run
———————————————————————————————————————————
Program to print the prime numbers
———————————————————————————————————————————
2 
3 
5 
7 
11 
13 
17 
19 
23 
29 
31 
37 
41 
43 
47 
———————————————————————————————————————————
kodingwindow@kw:~/csharp$ 
Advertisement