/*
 * Created on 19/08/2003
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package sce.queue;

/**
 * @author TOSHIBA
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class App {

	public static void main(String[] args) {
		Queue fila = new Queue();
		fila.enqueue("Primeiro");
		fila.enqueue("Segundo");
		fila.enqueue("Terceiro");
		fila.enqueue("Quarto");
		fila.enqueue("Quinto");
		fila.enqueue("Sexto");
		fila.enqueue("Sétimo");
		fila.enqueue("Oitavo");
		fila.enqueue("Nono");
		fila.enqueue("Décimo");
		while(!fila.isEmpty()){
			System.out.println((String)fila.dequeue());
		}
	}
}