C++ 파일 내용 출력 관련 질문 드립니다.

kimig82의 이미지

제가 지금 과제 때문에 C++로 콘솔영역 주소록 프로그램을 작성하고 있습니다.
프로그램 내용인 즉, 개인 정보를 입력 받으면 파일로 순차저장되고,
이 순차 저장된 내용을 다시 전체 출력도 가능하게 하는 프로그램이지요..
문제는 출력 부분에서 파일에 저장된 내용 중 맨 마지막 내용이 두번 중복 출력
된다는 겁니다.
아래는 출력 함수에 대한 소스입니다.

void Output()
{

char *Name;
char *ID_NUM;
char *Add;
char *HP;
char *Job;
int Age = 0;
int i = 1;
FILE *fp;

Name = (char *) malloc(50);
ID_NUM = (char *) malloc(13);
Add = (char *) malloc(256);
HP = (char *) malloc(15);
Job = (char *) malloc(256);

if((fp = fopen("file.info", "r")) == NULL)
{
cout << "저장한 데이터 파일이 없습니다." << endl;
exit(-1);
}

while(!feof(fp))
{
i++;
fscanf(fp, "%s %s %s %s %s %d", Name, ID_NUM, Add, HP, Job, &Age);
cout << "이름 : " << Name << endl;
cout << "주민등록번호 : " << ID_NUM << endl;
cout << "주소 : " << Add << endl;
cout << "핸드폰 번호 : " << HP << endl;
cout << "직업 : " << Job << endl;
cout << "나이 : " << Age << endl;
cout << "=================================================" << endl;

if(i % 2 == 0)
{
cout << "Press any key....." << endl;
getch();
}
}

fclose(fp);

}

다시 말씀드리면 파일에 맨 마지막 내용이 두번 출력되버린다는겁니다...
이걸 어찌 해결해야 할까요... ㅠㅠㅠㅠ
좀 가르켜 주세요~~ 흑;;

kasi의 이미지

feof와 fscanf가 정확히 어떻게 동작하는지 몰라서

뭐라 얘기를 못해드리겠지만...

혹시 저장할때 마지막 부분이 두번 저장된건 아닐지...

cout 으로 저장루틴 부분 찍어보심이 어떨가요?

=3=3=3

ssehoony의 이미지

feof()를 잘 못 사용하셨군요.

http://www.cinsk.org/cfaqs/html/node14.html#SECTION001410000000000000000
에 가서 12.2를 참고하세요.

C FAQ 의 모든 내용을 읽어 보시면 C 실력을 증진 시키는데 도움이 됩니다.

댓글 달기

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