scanf를 이용한 입력에서 type 변환에 대해서 질문 있습니다.

hanhwi의 이미지

다음과 같은 do_while문 만들었습니다.

#include

main()
{

int i;

do{

printf("1.menu 1\n");
printf("1.menu 1\n");
printf("1.menu 1\n");
printf("1.menu 1\n");
scanf("%d",&i);

}( i < 1 || i > 4);

return 0;

}

이 때, 'a'를 입력할 경우 재입력을 받지 않고 하염없이 루프만 돕니다.
printf("%d",a);로 저런 상태에서 입력을 받았을 때 무슨 값이 저장되는지 보니 i < 1 || i > 4의 값을 만족하는데
재 입력을 받지 않고 무한 루프를 도는 이유는 뭘까요?

sangwoo의 이미지

stdin이 buffered 이기 때문에 일어나는 문제인 거 같은데요.
그렇다고 stdin을 unbuffered 로 하지는 마시구요, fgets() 같은 함수로 char array를 받은 다음에 숫자로 변환하시는 등의 방법을 쓰시는 게 좋을 것 같습니다.

#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
 
int
main()
{
 
        int i = 1;
 
        do{
                char buf[LINE_MAX];
                printf(":-)\n");
                fgets(buf, LINE_MAX, stdin);
                i = atoi(buf);
        } while( i < 1 || i > 4);
        printf("val: %d\n", i);
 
        return 0;
 
}           

----
Let's shut up and code.

----
Let's shut up and code.

sangwoo의 이미지

참 scanf() 뒤에 fflush(stdin)을 써서 workaround 하는 사람들도 꽤 많은데요, 좋지 않은 (undefined) 방법입니다.
----
Let's shut up and code.

----
Let's shut up and code.

정태영의 이미지

"%d" 가 아니라 " %d" 식으로 값을 받으면 앞 쪽의 화이트 스페이스를 무시하기 때문에 문제를 일으키지 않습니다.

--
오랫동안 꿈을 그리는 사람은 그 꿈을 닮아간다...

http://mytears.org ~(~_~)~
나 한줄기 바람처럼..

오랫동안 꿈을 그리는 사람은 그 꿈을 닮아간다...

http://mytears.org ~(~_~)~
나 한줄기 바람처럼..

freemckang의 이미지

며칠전까지 이렇게 했었는데... 이게 안좋은 방법이었군요... 그런데 혹시 이유를 말씀해주실 수 있으신지요..????

句日新, 日新 日新 又日新.

句日新, 日新 日新 又日新.

cinsk의 이미지

fflush()는 output stream에만 동작하는 것이 원칙입니다. 따라서 input stream인 stdin에 쓸 수 없습니다. (DOS나 Windows?) C library에 따라서 stdin에 fflush()를 쓸 경우, 입력 버퍼를 비워주는 효과를 얻을 수 있는 시스템도 있지만, 좋지 않은 방법입니다. 비표준 확장이며, 표준에는 output stream 이외의 stream에 쓸 경우 "the behavior is undefined."라고 나와 있습니다.

원 질문자가 원하는 것은, sangwoo님이 말씀하신 의견처럼 해결하는 것이 좋아 보입니다.

마지막으로, 사용자에게 입력을 받는 부분에서 scanf()를 직접 쓰는 것은 바람직하지 않습니다. 기타 문자열을 입력받는 함수를 쓴 다음, 프로그램 내부에서 parsing하는 것이 가장 좋습니다. 입력 받는 것은, fgets()등을 사용하고, 파싱은 sscanf() 또는 strtok/strpbrk/strchr/strspn을 써서 직접 할 수 있습니다.

Linux utility를 만든다면, (command history와 completion을 위해) fgets() 대신 readline()을 쓰고, GNU history library도 함께 쓰는 방법이 일반적입니다.

--
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html
Korean Ver: http://www.cinsk.org/cfaqs/

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.