Trabalho java Reserva de passagens
package programa;
/** * * @author Sylvio */ import java.util.Scanner;
public class Programa {
/** * @param args the command line arguments */
static Scanner leia = new Scanner(System.in); static int dispLJ[] = new int[24]; //armazena a qtd de lugares na janela static int dispLC[] = new int[24]; //armazena a qtd de lugares no corredor static int i = 0; //variavel usada nos laços static int posicaoJ = 0; public static void main(String[] args) { //declaração de variáveis locais int menuP = 0; //menu principal int menuV = 0; //menu venda System.out.println("\nQual é sua opção?" + "\n1 - Vender Passagem" + "\n2 - Mostrar Poltronas" + "\n3 - Sair"); menuP = leia.nextInt(); switch (menuP) { case 1: System.out.println("\nQual localização?" + "\n1 - Janela" + "\n2 - Corredor"); menuV = leia.nextInt(); switch (menuV) { case 1: System.out.println("\nQual poltrona? (1-24)"); posicaoJ = leia.nextInt();