Processing Forum
import javax.swing.*;
double artic;int cant;int tipoClient; // 1 for frecuente, any other for normal..double descNorm = 0.05;double descFrec = 0.10;double subt;double desct;double total;String valor;
valor= JOptionPane.showInputDialog("Enter the article's price.");artic =Integer.parseInt(valor);
valor= JOptionPane.showInputDialog("Enter amount");cant=Integer.parseInt(valor);
valor= JOptionPane.showInputDialog("Welcome to the descount system \n Enter 1, if it is a frecuent costumer, or any other digit for a normal one");tipoClient=Integer.parseInt(valor);
subt= artic * cant;
switch(tipoClient){case 1: desct= subt*descNorm;break;default: desct= subt*descFrec;break;}
total= subt-desct;
JOptionPane.showMessageDialog(null,total);System.exit(0);
import javax.swing.*;
//El programa, dados datos como dos variables de tipo entero, num y v, calcula el resultado de una funcion.int num;int v;String valor;double val;
valor= JOptionPane.showInputDialog("Enter 1,2 or 3");num =Integer.parseInt(valor);
valor= JOptionPane.showInputDialog("Enter V");v=Integer.parseInt(valor);
switch(num){case 1: val=100*v;break;case 2: val= Math.pow(100,v);break;case 3: val=100/v;break;default: val=0;break;}
JOptionPane.showMessageDialog(null,val);System.exit(0);