Clase Leer Bolita
Enviado por dannyfranciscohe • 27 de Septiembre de 2013 • 477 Palabras (2 Páginas) • 344 Visitas
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication1;
/**
*
* @author fac03
*/
public class JavaApplication1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String bolita;
//int bolita2;
float pneto;
float total;
int stru;
System.out.print("Ingrese valor de la compra" + "\n");
pneto=Leer.datoFloat();
total=pneto;
System.out.print("Que estructura desea para el descuento" +"\n");
System.out.print("1- if" + "\n");
System.out.print("2- switch" + "\n");
stru=Leer.datoInt();
if(stru==1){
System.out.print("Ingrese Descuento Bolita" + "\n");
System.out.print("a- Azul" + "\n");
System.out.print("r- Roja" + "\n");
System.out.print("b- Blanca" + "\n");
bolita=Leer.datoString();
if(bolita.equals("a")){
pneto=(pneto*20)/100;
}else if(bolita.equals("r")){
pneto=(pneto*30)/100;
}else if(bolita.equals("b")){
System.out.print("No hay descuento" + "\n");
pneto=0;
}else{
System.out.print("No existe otro color" + "\n");
}
}else if(stru==2){
System.out.print("Ingrese Descuento Bolita" + "\n");
System.out.print("a- Azul" + "\n");
System.out.print("r- Roja" + "\n");
System.out.print("b- Blanca" + "\n");
//bolita2=Leer.datoInt();
bolita=Leer.datoString();
switch(bolita.charAt(0)){
case 'a':
pneto=(pneto*20)/100;
break;
case 'r':
pneto=(pneto*30)/100;
break;
case 'b':
System.out.print("No Tiene Descuento" + "\n");
pneto=0;
break;
default:
System.out.print("No existe otro color" + "\n");
break;
}
}else{
System.out.print("No existe otra estructura" + "\n");
}
total=total-pneto;
...