0
I have doubts about the creation of a shopping cart, I managed so far: Inform the product name, Product price Quantity; there is the sum and the question if you make another purchase, if it is "N" it ends, otherwise it restarts.
Then it has to be informed a cycle and then add up all the values dividing in cash or card.
package problema01;
import java.io.IOException;
import java.util.Scanner;
/**
*
* @author VAGNER.MATOS
*/
public class Problema01 {
/**
* @param args the command line arguments
* @throws java.io.IOException
*/
public static void main(String[] args) throws IOException{
Scanner ent = new Scanner(System.in);
Scanner ler = new Scanner(System.in);
double num, preço;
String nome;
String nome2;
char resposta;
System.out.println("Informe o Produto:");// Usuario digita o nome do produto
nome = ler.nextLine();
System.out.println("Digite o preço do Produto");// usuario digita o preço
preço = ent.nextDouble();
System.out.println("Digite a quantidade do Produto"); // usuario digita a quantidade do produto
num = ent.nextDouble();
System.out.println("A Quantidade de produtos é "+num+"\nTotal a pagar é R$"+num*preço+"\n\nObrigado por comprar "+nome); // Resumo
//Nova Compra
System.out.println("\nRealzar outra compra? (S/N): "); //entrada de dados (lendo um caractere)
resposta = (char)System.in.read();
if ((resposta == 'S') || (resposta == 's'));
{
System.out.println("\n\"Nova compra\"\n");
System.out.println("Favor iniciar com as informações\n");
System.out.println("Informe o Produto:");
nome2 = ler.nextLine();//Novo produto
System.out.println("Digite o preço do Produto");
preço = ent.nextDouble(); // usuario digita o preço
System.out.println("Digite a quantidade do Produto");
num = ent.nextDouble(); // usuario digita a quantidade do produto
System.out.println("A Quantidade de produtos é " + num + "\nTotal a pagar é R$"+ num*preço +"\n\nObrigado por comprar " + nome2);
} System.out.println("\n\n\"Volte sempre!\"\n\n");
}
}
Thank you very much, as I said I’m new in programming, but your help was critical to my project! I managed to set up a while structure, but I still have to make the sum on the card and money, I’ll see how your codes got here. Thanks!
– vagner matos
I thank you, any other doubt can play here, thanks!!
– Erick Kokubum
Good afternoon! I still haven’t been able to test the code, as I reported, I’m starting programming, so I need the complete code to be able to test
– vagner matos