1044 顺序栈基本操作的实现

地址:http://acm.swust.edu.cn/problem/1044/

#include

int main()
{
int N;
while(scanf("%d",&N)!=EOF)
{
int arr[1000];
int top,i;
for(top=0;top{
scanf("%d",&arr[top]);
}
top-=1;
int k;
scanf("%d",&k);
for(i=0;i{
top--;
}
if(top<0)
printf("-1");
else
printf("%d",arr[top]);
}
return 0;
}

你可能感兴趣的:(算法)