Thursday, January 12, 2023

code for prime num detection



 Hey there its me AGENT 47 from cyber assassins many time has been passed but we didnt respond here is a simple code that can detect prime numbers


#include <stdio.h>

int main() 

{


  int n, i, flag = 0;

  printf("Enter a positive integer: ");

  scanf("%d", &n);

  if (n == 0 || n == 1)

    flag = 1;


  for (i = 2; i <= n / 2; ++i) {

    if (n % i == 0) {

      flag = 1;

      break;

    }

  }

  if (flag == 0)

    printf("%d is a prime number.", n);

  else

    printf("%d is not a prime number.", n);


  return 0;

}


i hope that you all will understand this or you can comment your doubt about this. Thanks for supporting us.

0 comments:

Post a Comment

Contact Us

Phone :

+8801716815647
+8801996204467
+8801520731186

Email :

susmoy1025@gmail.com
dishantanjim@gmail.com
sadmansakib7494@gmail.com