336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
////////////////////////////////////////////////////////////////////////////////
// Title : 소수판정 알고리즘
// Author : 최민혁
// Revision : 2006. 9. 29 First implementation
////////////////////////////////////////////////////////////////////////////////
#include <stdio.h>
int main( void )
{
int n;
int i = 1, count = 0;
printf( "Enter a number : " );
scanf( "%d", &n );
while( i <= n )
{
if( n % i == 0 )
count++;
i++;
}
if( count == 2 )
printf( "%d is Prime Number\n", n );
else
printf( "%d is not Prime Number\n", n );
return 0;
}
'Programming > Algorithm' 카테고리의 다른 글
Tic Tac Toe (0) | 2015.02.07 |
---|---|
RSA (0) | 2015.02.07 |
Magic Square (0) | 2015.02.07 |
Linked List Calculator (0) | 2015.02.07 |
Hanoi Tower (0) | 2015.02.07 |