-3
I need help to check if the product of the code entered is registered in an array, if it is, the data will be displayed and will be requested to read the amount of input of the same product.
case 2:
do{
System.out.println("--- Movimentação ---");
System.out.println("-- 1) Entrada --");
System.out.println("-- 2) Saída --");
System.out.println("-- 0) Retornar --");
System.out.println("Opção: ");
op2 = sc2.nextInt();
switch(op2) {
case 1:
System.out.println("--- Movimentação - Entrada de produto ---");
for(cont = 0;cont < aNome.length; cont++) {
do{
System.out.println("Digite o código do produto:");
System.out.println("-- QTD Atual: ");
System.out.println("-- QTD Entrada: ");
System.out.println("-- QTD Final: ");
System.out.println("-- Repetir operação (S/N)? --");
str = sc2.next();
}while(str.equals("s") || str.equals("S"));
}
}
}while(op2 != 0);
break;