어제 솟수 문제로 질문했었는데 다시 막힌 부분이 있네요 -_-;

beggarstar의 이미지

적어도 제눈에는 코드는 문제가 없어 보입니다.

솟수를 판별하는 코드에서 지정한 숫자까지 솟수를 찾아 보는
프로그램으로 업하는 중인데요.

9를 입력하면 9까지 숫자를 솟수가 아닌지 판별해 출력해 줍니다.
10을 입력해도 잘 찾아 줍니다.
근데 11을 입력하면 다운이 됩니다 -_-;
11을 입력하면 10까지 확인된뒤에 반응이 없이 제자리 걸음만 하더군요
다시 코드 올리겠습니다.

소스코드
---------------------------------------------------------------------------------------------------------------------------------
int is_prime(int n);

main()
{
int n, i;

printf("\nEnter the number : ");
scanf("%d", &n);

for (i = 1; i {
if (is_prime(i) == 0)
printf("\n --> the digit, %d is not a prime number!\n", i);
else
printf("\n --> the digit, %d is a prime number!\n", i);
}
}

int is_prime(int n)
{
int i;
printf("\nafter int i... %d", n);
if (n == 2)
return 1;
printf("\nbefore n%2 == 0 : %d", n);
if (n % 2 == 0)
return 0;
printf("\n .... %d", n);
//printf("\n the number we want to identify = %d", n);
for (i = 3; i if (n % i == 0)
return 0;
//printf("\t\t\t after for");
return 1;
}
--------------------------------------------------------------------------------------------------------------------------

다운되는 화면..
--------------------------------------------------------------------------------------------------------------------------
soo@beggarstar:~/workspace/c/prime_nu$ ./prime

Enter the number : 11

after int i... 1
before n%2 == 0 : 1
.... 1
--> the digit, 1 is a prime number!

after int i... 2
--> the digit, 2 is a prime number!

after int i... 3
before n%2 == 0 : 3
.... 3
--> the digit, 3 is a prime number!

after int i... 4
before n%2 == 0 : 4
--> the digit, 4 is not a prime number!

after int i... 5
before n%2 == 0 : 5
.... 5
--> the digit, 5 is a prime number!

after int i... 6
before n%2 == 0 : 6
--> the digit, 6 is not a prime number!

after int i... 7
before n%2 == 0 : 7
.... 7
--> the digit, 7 is a prime number!

after int i... 8
before n%2 == 0 : 8
--> the digit, 8 is not a prime number!

after int i... 9
before n%2 == 0 : 9
.... 9
--> the digit, 9 is not a prime number!

after int i... 10
before n%2 == 0 : 10
--> the digit, 10 is not a prime number!

after int i... 11
before n%2 == 0 : 11
---------------------------------------------------------------------------------------------------------------------------
여기까지 입니다
도움 부탁드리겠습니다.

Whom의 이미지

for (i = 3; i <= (int)sqrt(n); i =+ 2)

for (i = 3; i <= (int)sqrt(n); i += 2)

Whom의 이미지

=+ -> +=

beggarstar의 이미지


어디 쥐구멍 없나요?

이런 창피할때가

자기 소스 에러나 버그는 남이 같이 봐주면 역시 잘보이나 보네요

이런.. 아직 멀었구나..

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.