程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c-vs2010中怎麼經常報錯!求助 !

c-vs2010中怎麼經常報錯!求助 !

編輯:編程綜合問答
vs2010中怎麼經常報錯!求助 !

#include
#include
#define STACK_SIZE 100
char contents[STACK_SIZE];
int top=0;

void make_empty(void);
int is_empty(void);
void stack_underflow(void);
void stack_overflow(void);
void push(char i);
int pop(void);
int is_full(void);

int main()
{
char a,c;
printf("Enter parenteses and/or braces:");

for(;;){
c=getchar();
if(c=='\n'){
    if(top==0){
        printf("匹配!\n");break;}
    else{
        printf("不匹配!\n");break;}}
else if(c=='{'||c=='('||c=='[')
    push(c);
else if(c=='}'||c==')'||c==']'){
    a=pop();
    if((c=='}' && a!='{')||(c==')' && a!='(')||(c==']' && a!='[')){
        printf("不匹配!!\n");break;}
else{
    printf("輸入不正確");break;}}

}

void make_empty(void)
{
top=0;
}

int is_empty(void)
{
if(top==0)
return 1;
else
return 0;
}

int is_full(void)
{
if(top==STACK_SIZE)
return 1;
else
return 0;
}

void push(char i)
{
if(is_full())
stack_overflow();
else
contents[top++] = i;

}

int pop(void)
{
if (is_empty())
stack_underflow();
else
return contents[--top];

}

void stack_overflow(void)
{
printf("Stack Overflow\n");
printf("bupipei\n");
exit (0);
}

void stack_underflow(void)
{

printf("Stack Underflow\n");
exit (0);

}

1>c:\users\lenovo\documents\visual studio 2010\projects\20141126.c\20141126.c\596.c(42): error C2143: 語法錯誤 : 缺少“;”(在“類型”的前面)

最佳回答:


你的main部分少了右花括號"}"加上就可以了。

a_dong_2014
save4me
a_dong_2014
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved