HomeCSharpC# Program to Print All the Prime Numbers between 1 to 100

C# Program to Print All the Prime Numbers between 1 to 100

In this example, we will create a C# program to find and print all the prime numbers between 1 and 100, demonstrating the language’s ability to handle prime number generation and basic loops.

Problem Statement

Write a C# program to find and print all the prime numbers between 1 and 100. A prime number is a positive integer greater than 1 that has no positive integer divisors other than 1 and itself.

C# Program to Print All the Prime Numbers between 1 to 100

using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("Prime numbers between 1 and 100:");

        for (int number = 2; number <= 100; number++)
        {
            if (IsPrime(number))
            {
                Console.Write(number + " ");
            }
        }
    }

    static bool IsPrime(int num)
    {
        if (num <= 1)
        {
            return false;
        }

        for (int divisor = 2; divisor * divisor <= num; divisor++)
        {
            if (num % divisor == 0)
            {
                return false;
            }
        }

        return true;
    }
}

Input / Output

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...