ch=getche(); 가르침을 부탁드립니다!

sageblue의 이미지

성적을 입력받아... 출력하는 sj.cc입니다!
실행됨니다!허나~~~

#include<stdio.h>
#include<iostream.h>
#include<string.h>

using namespace std;

class Person {
private : char name[10];
int kor,eng,mat,sum,top;
float ave;
public : void choice();
void input();
void output();
};

Person p[50], temp;
int i,j,su;

////// 학생수입력 함수 /////
void Person::choice() {
printf("\t 몇명의 학생을 입력하겠습니까? : ");
scanf("%d",&su);
}

//////입력문 함수 /////
void Person::input() {
printf("\t 학생의 이름과 점수를 입력하세요!\n");
printf("\t-------------------------------------------------------------------\n");
for(i=0;i<su;i++) {
printf("\t 이름 input : ");
scanf("%s",p[i].name);
printf("\t 국어 input : ");
scanf("%d",&p[i].kor);
printf("\t 영어 input : ");
scanf("%d",&p[i].eng);
printf("\t 수학 input : ");
scanf("%d",&p[i].mat);
printf("\t-------------------------------------------------------------------\n");
}

p[i].sum=p[i].kor+p[i].eng+p[i].mat;
p[i].ave=(float)p[i].sum/3;
}

for(i=0;i<su;i++) { p[i].top=1;
for(j=0;j<su;j++) {
if(p[i].sum<p[j].sum) { p[i].top++; }
}
}

}

//////// 출력문 함수///////
void Person::output() {
int sum_top=0;
float ave_top=0;
printf("\t==============================================================\n");
printf("\t 이름 \t 국어 \t 영어 \t 수학 \t 합계 \t 평균 \t 등수\n");
printf("\t==============================================================\n");
for(int i=0;i<su;i++) {
printf("\t %s\t %3d\t %3d\t %3d\t %3d\t %3.2f\t %1d\n",p[i].name,p[i].kor,p[i].eng,p[i].mat,p[i].sum,p[i].ave,p[i].top);
sum_top+=p[i].sum;
}
printf("\t=============================================================\n");
ave_top=(float)sum_top/3/su;
printf("\t 전체 총점 : %d \t 전체 평균 : %3.2f \n",sum_top,ave_top);
printf("\n");
}

void main() {
///////////////////// char ch; =>이렇게 입력했습니다!
char ch;
do {
printf("\n");
p->choice();
p->input();
p->output();
printf("\t 계속 입력 하시계습니까?[y or n] : ");
scanf("%c",ch);
///// ch=getche(); => 이렇게하면은 밑에 에러 뜸니다!
ch=getchar();
} while(ch=='y'||ch=='Y');
printf("\t 종료되었습니다!\n");
}

$ g++ -o sj sj.cc
sj.cc: In function `int main (...)':
sj.cc:110: `getche' undeclared (first use this function)
sj.cc:110: (Each undeclared identifier is reported only once for each
function it appears in.)

위에서 "ch=getche();" 함수를 사용하면 에러가 뜸니다!
이건 아직 이해가 않됨니다.
getche()는 Linux Unix용이고 , getch()는 도스용 이라고 알고 있는되....
getche()는 왜 않될까요????

위에서 "ch=getchar();" 함수를 사용가능합니다!

허접한 질문에 답변 감사드립니다!

whatisid의 이미지

에러메세지가 뭔가요?

getche() 가 아니라 getchar()가 아닐까 싶은데요 :)

체스맨의 이미지

scanf("%c",&ch);
ch 는 실시간 에러가 나겠군요.

그리고는 그 부분은 별로 틀린게 없어보이는데,
뭔가 소스를 고치면서 문제가 발생하는 것을 제대로 안올리신 게 아닌지요?

Orion Project : http://orionids.org

lunarainbow의 이미지

체스맨 wrote:
scanf("%c",&ch);
ch 는 실시간 에러가 나겠군요.

이 부분이 왜 에러가 나는지 설명 부탁 드려도 될까요?

혹시 Enter 를 쳤을 경우 뒤따라 오는 \n과 같은 데이터를 의미 하시는 것인지..

그렇지 않으면 위의 코드 자체에 문제가 있는 것인지 궁금합니다. ^^

저도 보통 이렇게 사용 하거든요.

scanf("%c", &ch);
getchar();

요즘엔 %c로 받을 일이 별로 없긴 합니다만..;;

lsj0713의 이미지

scanf("%c",ch); 

http://www.delorie.com/djgpp/doc/libc-2.02/libc_569.html

scanf의 매개변수로는 포인터가 전달되어야 합니다. 넘겨받는 매개변수들의 값이 변한다는 것을 생각하면 당연한 것입니다.

그리고 에러 메시지는 ISO 표준 C++이 포인터와 integer 사이의 비교를 금하고 있음을 나타내는 에러입니다.

sj.cc:113: ISO C++ forbids comparison between pointer and integer

getche 자체는 아무런 문제가 없습니다. 물론 POSIX 함수도 아니고 ANSI(또는 ISO) 표준 함수도 아니지만, gcc에서는 존재하는 함수입니다.

http://www.delorie.com/djgpp/doc/libc-2.02/libc_337.html

혹시 char ch;가 아니라 char *ch로 치신 것 아닌가요?

체스맨의 이미지

lunarainbow wrote:
체스맨 wrote:
scanf("%c",&ch);
ch 는 실시간 에러가 나겠군요.

이 부분이 왜 에러가 나는지 설명 부탁 드려도 될까요?

-_-;
의미 전달이 잘못됐군요.

원본 글에 다음과 같이 하셔서

scanf("%c",ch);

제가

scanf("%c",&ch);

이렇게 고쳐놓고, 원본글에서 ch 넣은 부분이 실시간 에러가 날거라 말씀드린 것이었습니다.

Orion Project : http://orionids.org

lunarainbow의 이미지

제가 처음의 원본 소스를 자세히 들여다 보지 않았었군요. :wink:

순간 저는 "헉. 내가 몇년간 잘못 알고 있었단 말인가?!"

하고 놀랬었습니다. ^^

체스맨의 이미지

sageblue wrote:

sj.cc:110: `getche' undeclared (first use this function)
sj.cc:110: (Each undeclared identifier is reported only once for each
function it appears in.)

위에서 "ch=getche();" 함수를 사용하면 에러가 뜸니다!
이건 아직 이해가 않됨니다.
getche()는 Linux Unix용이고 , getch()는 도스용 이라고 알고 있는되....
getche()는 왜 않될까요????

문법 문제가 아니었군요.
getch, getche 모두 conio.h 함수이고, conio.h 는 유닉스 계열 호환성이 없습니다.

conio.h와 유사한 함수셋들은 curses 라이브러리에서 찾으실 수 있습니다.

Orion Project : http://orionids.org

lsj0713의 이미지

아까랑 에러메시지가 달라진 것 같은...-_-;;

아, 그리고 gcc에는 conio.h가 없습니다. 제 실수입니다.
제가 참고한 문서가 djgpp의 Library reference라서 conio.h 류의 함수들이 끼어 있었던 듯 합니다. -_-;;

위에분 말씀대로 별도의 라이브러리를 사용해야 될 것 같습니다.

sageblue의 이미지

허접한 질문인데도....답변 해주셔서 감사합니다!

댓글 달기

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