#include<stdio.h> void stack(int x) { int temp; scanf("%d",&temp); if(x) stack(x-1); printf("N[%d] = %d\n",x,temp); } int main(void) { stack(19); return 0; }
用reverse函数
麻烦了
大佬,我不太懂为什么这个模拟了堆栈👀我还没学数据结构
用reverse函数
麻烦了
大佬,我不太懂为什么这个模拟了堆栈👀我还没学数据结构