/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package pila; import java.util.Stack; /** * * @author user */ public class Pila { /** * @param args the command line arguments */ public static void main(String[] args) { Stack pila= new Stack(); pila.push(1); pila.push(2); pila.push(3); pila.push(4); pila.push(5);pila.push(6); pila.push(7); System.out.println(" "+pila.peek()); while (pila.empty()==false ){ System.out.println(pila.pop()); } // TODO code application logic here } }