Programa em Java Calcula Combustivel
/*
* 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 combustivel;
import javax.swing.JOptionPane;
/** * * @author marti_000 */ public class Combustivel {
//metodo main.
public static void main(String[] args) {
//Estabelecer variaveis.
int escolha; int escolha2 = 1; double valor = 0; double gnv = 3.00; double gasolina = 7.00; double alcool = 5.00; double total = 0; double troco; double pagamento; //começõ do metodo escolha while (escolha2 == 1) { escolha = Integer.parseInt(JOptionPane.showInputDialog(null, "Selecione o Combustivel:\n 1-GNV =3.00 \n 2-Gasolina = 7.00 \n 3-Alcool = 5.00")); switch (escolha) { case 1: JOptionPane.showMessageDialog(null, "valor do combustivel: " + gnv); valor = valor + gnv; escolha2 = Integer.parseInt(JOptionPane.showInputDialog("Deseja outro tipo de combustivel : 1-sim 2-nao")); escolha2 = verificar(escolha2);
break; case 2: JOptionPane.showMessageDialog(null, "valor do combustivel: " + gasolina); valor = valor + gasolina; escolha2 = Integer.parseInt(JOptionPane.showInputDialog("Deseja outro tipo de combustivel : 1-sim 2-nao ")); escolha2 = verificar(escolha2); break; case 3: JOptionPane.showMessageDialog(null, "valor do combustivel: " + alcool); valor = valor + alcool;