程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> 九度OJ-1108

九度OJ-1108

編輯:關於C++
#include 
#include 
#include 

int n;
char str[10];
int top;
int stack[10010];

int main(){
    freopen("input.txt","r",stdin);

    while(scanf("%d",&n)!=EOF&&n){
        top=-1;
        memset(stack,0,sizeof(stack));
        for (int i = 0; i < n; ++i)
        {
            scanf("%s",str);
            if (str[0]=='A')
            {
                if (top>=0)
                    printf("%d\n",stack[top]);
                else
                    printf("E\n");
            }else if(str[0]=='P'){
                int tmp;
                scanf("%d",&tmp);
                stack[++top]=tmp;
            }else
                if (top>=0)
                    top--;          
        }
        printf("\n");
    }
    return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved