Skip to content
Menu
Code for Java c
  • Home
  • Java
    • Java Examples
    • Java tutorials
  • C
    • C tutorials
    • C Examples
  • C++
    • C++ Tutorials
    • C++ Examples
  • Python
    • Python Tutorials
    • Python Examples
  • About
    • About me
    • contact us
    • disclaimer
    • Privacy Policy
Code for Java c
C# program to print all prime numbers between 1 to n

C# program to print all prime numbers between 1 to n

Posted on January 24, 2023January 24, 2023

Table of Contents

  • C# program to print all prime numbers between 1 to n
    • Code to print 1 ton prime number
      • Print the prime number in C# -using for loop -#1
      • Print the prime number in C# -using for loop – #2
      • Print the prime number in C# -using while loop -#1
      • Print the prime number in C# -using while loop – #2
      • Print the prime number in C# -using do-while loop -#1
      • Print the prime number in C# -using do-while loop – #2

C# program to print all prime numbers between 1 to n

In this article, we will discuss the concept of the C# program to print all prime numbers between 1 to n

In this post, we are going to learn how to write a program to find between 1 to n prime numbers and display the result on the screen in C# programming language.

Code to print 1 ton prime number

Print the prime number in C# -using for loop -#1

In this program, the user initiates the values to variables and the program asked to enter value for num, then it will print prime nunbers 1 to n using for loop in the C# programming language.

Program 1

// Write a program for printing 1 to n prime numbers in C#
// using for loop

using System;
namespace primeNumber
{
  class first_N_Prime
  {
      static void Main(string[]args)
      {
      int i=1,num,count=0;
      //variable decalaration 
    Console.WriteLine("print 1 to n prime  numbers ");
    Console.WriteLine("Enter the number");
    num=int.Parse(Console.ReadLine());
    //reading the input
    for(int n=0; n<num; n++){
    
    count=0;
    for(int j=1; j<=i; 	j++){
      if(i%j==0)
          count++;
        
    }
      if(count==2){
        Console.Write(i+",");
        //print prime numbers
    }
    i++;
  }
}
}
}

When the above code is executed, it produces the following result

print 1 to n prime numbers
Enter the number
25
2,3,5,7,11,13,17,19,23,

 

Print the prime number in C# -using for loop – #2

In this program, the user is asked to enter value for variable num, then it will print prime numbers 1 to n using for loop in the C# programming language.

Program 2

// Write a program for printing 1 to n prime numbers in C#
// using for loop

using System;
namespace primeNumber
{
  class first1toNPrime
  {
    static void Main(string[]args)
      {
    Console.WriteLine("print prime number between 1 to n");
    Console.WriteLine("Enter the number");
    int num=int.Parse(Console.ReadLine());
    //reading the input
    bool isPrime=true;
    for(var i=2; i<=num; i++){
      
      for(var j=2; j<=num; j++)
      {
      if(i!=j && i%j==0){
          isPrime=false;
        break;
      }
    }
      if(isPrime){
        Console.Write(i+",");
    }
    isPrime=true;
    
  }
  Console.ReadKey();
}
}
}

When the above code is executed, it produces the following result

print prime number between 1 to n
Enter the number
30
2,3,5,7,11,13,17,19,23,29,

 

Print the prime number in C# -using while loop -#1

In this program, the user initiates the values to variables and the program asked to enter value for num, then it will print prime nunbers 1 to n using while loop in the C# programming language.

Program 3

// Write a program for printing 1 to n prime numbers in C#
// using while loop

using System;
namespace primeNumber
{
  class print_1_to_N_Prime
  {
      static void Main(string[]args)
      {
      int i=1,num,count=0;
      //variable decalaration 
    Console.WriteLine("print 1 to n prime  numbers ");
    Console.WriteLine("Enter the number");
    num=int.Parse(Console.ReadLine());
    //reading the input
    int n=0;
    while(n<num){
    
    count=0;
    int j=1; 
    while(j<=i){
      if(i%j==0)
          count++;
          j++;
    }
      if(count==2){
        Console.Write(i+",");
        //print prime numbers
    }
    i++;
     n++;
  }
}
}
}

When the above code is executed, it produces the following result

print 1 to n prime numbers
Enter the number
40
2,3,5,7,11,13,17,19,23,29,31,37,

 

Print the prime number in C# -using while loop – #2

In this program, the user is asked to enter value for variable num, then it will print prime numbers 1 to n using while loop in the C# programming language.

Program 2

// Write a program for printing 1 to n prime numbers in C#
// using while loop

using System;
namespace primeNumber
{
  class first1toNPrime
  {
    static void Main(string[]args)
      {
    Console.WriteLine("print prime number between 1 to n");
    Console.WriteLine("Enter the number");
    int num=int.Parse(Console.ReadLine());
    //reading the input
    bool isPrime=true;
    var i=2;
    while(i<=num){
      var j=2;
      while(j<=num)
      {
      if(i!=j && i%j==0){
          isPrime=false;
        break;
      }
      j++;
    }
      if(isPrime){
        Console.Write(i+",");
    }
    isPrime=true;
    i++;
    
  }
  Console.ReadKey();
}
}
}

When the above code is executed, it produces the following result

print prime number between 1 to n
Enter the number
40
2,3,5,7,11,13,17,19,23,29,31,37,

 

 

Print the prime number in C# -using do-while loop -#1

In this program, the user initiates the values to variables and the program asked to enter value for num, then it will print prime nunbers 1 to n using do-while loop in the C# programming language.

Program 5

// Write a program for printing 1 to n prime numbers in C#
// using do-while loop

using System;
namespace primeNumber
{
  class print_1_to_N_Prime
  {
      static void Main(string[]args)
      {
      int i=1,num,count=0;
      //variable decalaration 
    Console.WriteLine("print 1 to n prime  numbers ");
    Console.WriteLine("Enter the number");
    num=int.Parse(Console.ReadLine());
    //reading the input
    int n=0;
  do{
    
    count=0;
    int j=1; 
    do{
      if(i%j==0)
          count++;
          j++;
    }while(j<=i);
      if(count==2){
        Console.Write(i+",");
        //print prime numbers
    }
    i++;
     n++;
  }	while(n<num);
}
}
}

When the above code is executed, it produces the following result

print 1 to n prime numbers
Enter the number
50
2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,

 

Print the prime number in C# -using do-while loop – #2

In this program, the user is asked to enter value for variable num, then it will print prime numbers 1 to n using do-while loop in the C# programming language.

Program 2

// Write a program for printing 1 to n prime numbers in C#
// using do-while loop

using System;
namespace primeNumber
{
  class first1toNPrime
  {
    static void Main(string[]args)
      {
    Console.WriteLine("print prime number between 1 to n");
    Console.WriteLine("Enter the number");
    int num=int.Parse(Console.ReadLine());
    //reading the input
    bool isPrime=true;
    var i=2;
    do{
      var j=2;
      
      do{
      if(i!=j && i%j==0){
          isPrime=false;
        break;
      }
      j++;
    }while(j<=num);
      if(isPrime){
        Console.Write(i+",");
    }
    isPrime=true;
    i++;
    
  }while(i<=num);
  Console.ReadKey();
}
}
}

When the above code is executed, it produces the following result

print prime number between 1 to n
Enter the number
75
2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,

 

Suggested post

Java programming code to check prime or not

C programming code to check prime or not

C++ programming code to check prime or not

Python programming code to check prime or not

C# program to check whether a number is prime or not

C# function to check whether a number is prime or not

 

Code to print prime numbers from 1 to 100 or 1 to n in Java

Code to print prime numbers from 1 to 100 or 1 to n in C

Code to print prime numbers from 1 to 100 or 1 to n in C++

Code to print prime numbers from 1 to 100 or 1 to n in Python

Related

Recent Posts

  • Subtract two numbers using method overriding
  • PHP Star triangle Pattern program
  • Using function or method to Write temperature conversion : Fahrenheit into Celsius
  • Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user
  • Write temperature conversion program: Fahrenheit into Celsius
  • How to write a program to convert Fahrenheit into Celsius

tag

Addition (6) Array (38) C++ language (91) C language (98) c sharp (23) Division (6) Function (29) if else (32) Java language (102) JavaScript (5) loops (137) Multiply (7) Oop (2) patterns (65) PHP (13) Python Language (38) Subtraction (7) temperature (20)

Archives

Categories

Address

Global information technology

Puloly south, PointPedro

Jaffna

Srilanka

©2025 Code for Java c | Powered by SuperbThemes