c++ error(expected declaration or statement at end of input

pjh9965의 이미지

제목과 같은 오류가 메인 함수에 발생하는데..중괄호나 괄호를 잘못입력한 것 같은데 제 눈에 안 보여서 ㅜㅜ조언 구합니다.

#include
#include
#include

typedef struct _cafe {
char menu[20];
char type;
int price;
struct _cafe *next;
}Cafe;

Cafe *head=NULL;

void Init() {
FILE *fp;
char menu[20];
char type;
int price;

fp = fopen("menu.txt", "r");
if(fp==NULL) {
printf("No such file\n");
return;
}
while(!feof(fp)) {
fscanf(fp, "%[^\n]", menu);
fscanf(fp, "\n");
fscanf(fp, "%c\n", &type);
fscanf(fp, "%d\n", &price);
printf("%s %c %d\n", menu, type, price);
// addFirst(menu, type, price);
}
fclose(fp);
}
//void addFirst(char menu[],char type,int price){
// Cafe*newnode=malloc(sizeof(Cafe));

//}
void showcoffee(){
printf("======CWNU CAFE=====\n");
printf("1.아메리카노 2500원\n"
"2.카페라떼 3000원\n"
"3.바닐라라떼 3500원\n"
"4.카푸치노 3000원\n"
"5.에스프레소 2500원\n"
"6.얼그레이 3500원\n"
"7.카모마일 3500원\n"
"8.히비스커스 3000원\n"
"9.밀크티 3300원\n"
"10.타로밀크티 3500원\n"
"11.청포도에이드 4000원\n"
"12.유자에이드 4000원\n"
"13.초코라떼 3500원\n"
"14.녹차라떼 3500원\n"
"15.아이스티 2500원\n");
printf("**주문방법:메뉴판을 보고 메뉴를 선택하신 뒤 해당 번호를 입력해주세요:\n");
}
void order(){
while(1)
{
int n;
int total=0;
printf("주문하신 메뉴번호:\n"
"두 가지 이상 메뉴 주문 시 반드시 번호 순서대로 주문해주세요!\n");
scanf("%d",&n);

switch(n){
case 1:
printf("주문하신 음료:아메리카노\n");
total+=2000;
break;
case 2:
printf("주문하신 음료:카페라뗴\n");
total+=2500;
break;
case 3:
printf("주문하신 음료:바닐라라떼\n");
total+=3000;
break;
case 4:
printf("주문하신 음료:카푸치노\n");
total+=2500;
break;
case 5:
printf("주문하신 음료:에스프레소\n");
total+=2500;
break;
case 6:
printf("주문하신 음료:얼그레이\n");
total+=3500;
break;
case 7:
printf("주문하신 음료:카모마일\n");
total+=3500;
break;
case 8:
printf("주문하신 음료:히비스커스\n");
total+=3000;
break;
case 9:
printf("주문하신 음료:밀크티\n");
total+3300;
break;
case 10:
printf("주문하신 음료:타로밀크티\n");
total+3500;
break;
case 11:
printf("주문하신 음료:청포도에이드\n");
total+=4000;
break;
case 12:
printf("주문하신 음료:유자에이드\n");
total+=4000;
break;
case 13:
printf("주문하신 음료:초코라떼\n");
total+=3500;
break;
case 14:
printf("주문하신 음료:녹차라뗴\n");
total+=3500;
break;
case 15:
printf("주문하신 음료:아이스티\n");
total+=2000;
break;

default:
printf("**잘못된번호입니다.메뉴판을 보고 다시주문해주세요**.\n");

}

printf("주문하신 총금액은 %d입니다\n",&total);
printf("감사합니다.");
}


void membership(){
int m;
int wf;
int newwf;
printf("적립을 도와드리겠습니다\n"
"이미 가입된 번호가 있으신가요?\n"
"YES<1> NO<2>\n");
scanf("%d",&m);
if(m==1){
printf("가입하신 전화번호 뒷자리4개를 입력해주세요:\n");
scanf("%d",&wf);
printf("%d번호 적립도와드렸습니다\n"
"스탬프 10개 이상 적립시 모든 음료 10%할인해드리겠습니다\n",&wf);
}
else if(m==2){
printf("가입을 도와드리겠습니다\n"
"고객님 전화번호 뒷4자리를 입력해주세요\n");
scanf("%d",&newwf);
printf("가입 축하드립니다.\n"
"%d번호로 적립되었습니다.\n"
"스탬프 10개 이상 적립시 모든 음료 10%할인해드리겠습니다\n",&newwf);
}
else{
printf("잘못된 번호입니다. 다시 입력해주세요\n");
}

int main() {
Init();
showcoffee();
order();
membership();

}


라스코니의 이미지

main() 함수 끝에 return 0가 없어서 그런가요? 잘 모르겠네요.

일단 코드는 < code > .... < /code > 로 보여 주세요.
컴파일 error 인 것 같은데 compile error line(위치)도 알려주시고요.

pjh9965의 이미지

답변 감사합니다!!
main 함수에 return 0 입력했는데 같은오류가 뜨네요 ㅠㅠ그 문제는 아닌 것 같아요..
코드는 //////////////로 보여달라는 말씀이 뭔지 모르겠어서....일단 에러는 코드 가장 마지막 줄
}에서 발생했구요.
In function membership,In function order에서 각각 오류가 발생한다고 뜹니다.

익명 사용자의 이미지

order와 membership 함수 모두, 함수 body의 닫는 중괄호가 없습니다.

중괄호 짝을 잘 맞춰 보면 금방 드러납니다.

pjh9965의 이미지

덕분에 해결했습니다!!

댓글 달기

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