//栈的实现 #include <iostream> #include <stack> using namespace std; int main() { int n; while(cin>>n){ if(n==0){ cout<<0<<endl; }  ...