Advertisement
thienlang

Is_Prime

Dec 15th, 2014
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <conio.h>
  3. #include <math.h>
  4.  
  5. //Hàm kiểm tra N phải số nguyên tố hay không
  6. //Trả về 1 nếu N là số nguyên tố.
  7. //Trả về 0 nếu N không phải số nguyên tố
  8. int is_Prime( int N)
  9. {
  10.     if ( N == 2 )
  11.         return 1;
  12.  
  13.     if ( N < 2 || N % 2 == 0)
  14.         return 0;
  15.  
  16.     for ( int i = 3; i * i <= N; i += 2)
  17.     {
  18.         if ( N % i == 0)
  19.         {
  20.             return 0;
  21.         }
  22.     }
  23.  
  24.     return 1;
  25. }
  26.  
  27. int main()
  28. {
  29.     int N = 0;
  30.     printf( "Danh sach cac so nguyen to duoi 1000.\n");
  31.     for (N = 0; N < 1000; N++)
  32.     {
  33.         if ( is_Prime( N) == 1)
  34.             printf("%d ", N);
  35.            
  36.     }
  37.     return 0;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement