In this tutorial, we will discuss the concept of the Program to print prime numbers between numbers of 1 to n using C#
In this post, we will learn how to print prime numbers between numbers of 1 to n using C# programming language with Example program.
Prime number
The number that can be divided by 1 and itself. it is called a prime number
for Example 2,3,5,7,11,13…
This program allows the user to enter a positive number for n then it will print prime numbers between numbers of 1 to n, using the C# language.
Program 1
using System; namespace primeNumber { class first_N_Prime { static void Main(string[]args) { bool isPrime=true; Console.WriteLine("Enter the number of prime you want: "); int num=Convert.ToInt32(Console.ReadLine()); for(int i=2; i<=num; i++){ for(int j=2; j<=num; j++) { if(i!=j && i%j==0){ isPrime=false; break; } } if(isPrime) { Console.Write("\n "+i); } isPrime=true; } Console.ReadKey(); } } }
When the above code is executed, it produces the following result
Enter the number of primes you want:
8
2
3
5
7
This program allows the user to enter a positive number for n then it will print prime numbers between numbers of 1 to n, using the C# language.
Program 2
using System; namespace primeNumber { class first_N_Prime { static void Main(string[]args) { int i,j,num,flag; Console.WriteLine("first n prime number between 1 to n"); num=int.Parse(Console.ReadLine()); for(i=2; i<=num; i++){ flag=1; for(j=2; j<=i/2; j++) { if(i%j==0){ flag=0; break; } } if(flag==1) Console.Write(i+","); } Console.ReadKey(); } } }
When the above code is executed, it produces the following result
first n prime number between 1 to n
20
2,3,5,7,11,13,17,19,
Program to find whether a Number is Prime or Not in C++
Program to find whether a Number is Prime or Not in C
Program to find whether a Number is Prime or Not in Java
Program to find whether a Number is Prime or Not in Python
Program to find whether a Number is Prime or Not in PHP
Program to find whether a Number is Prime or Not using the PHP function
C++ program to find first n prime numbers
Java program to find first n prime numbers
C program to find first n prime numbers
C code to 5 ways to check whether the given integer is Even or Odd
Java code to 5 ways to check whether the given integer is Even or Odd
C++ code to 5 ways to check whether the given integer is Even or Odd
Python code to 5 ways to check whether the given integer is Even or Odd
10 simple ways to add two numbers in Java In this article, we will discuss…
Write a Python program to find the first n prime numbers In this article we…
Python: Calculate Average of odd and even in a list using loops In this post,…
Python: Average of Odd & Even Numbers from User Input In this post, we will…
Explanation of one dimensional array In this post, we will discuss the concept of "Explanation…
Python program to calculate the sum of odd and even numbers in a list In…