Desenvolvimento java
Por: Marcio Gouveia • 3/4/2015 • Trabalho acadêmico • 551 Palavras (3 Páginas) • 281 Visualizações
public class Exercicio1 {
public static void main(String[] args) {
//variaveis
int res1,res2,res3,idd,resultado;
//Recebe a idade do usuario:
String idade=JOptionPane.showInputDialog("Digite sua idade");
int idade_calc = Integer.parseInt(idade);
idd=(65-idade_calc);
//faz pergunta 1:
String ask1=JOptionPane.showInputDialog("Voce Fuma? \n 1-sim \n 2-Não");
int answer1 = Integer.parseInt(ask1);
if (answer1==1){
res1=5;
}else{
res1=0;
}
//faz pergunta 2:
String ask2=JOptionPane.showInputDialog("Voce Bebe? \n 1-sim \n 2-Não");
int answer2 = Integer.parseInt(ask2);
if (answer2==1){
res2=7;
}else{
res2=0;
}
//faz pergunta 3:
String ask3=JOptionPane.showInputDialog("Voce Perde Noite de Sono? \n 1-sim \n 2-Não");
int answer3 = Integer.parseInt(ask3);
if (answer3==1){
res3=6;
}else{
res3=0;
}
//calculo:
resultado=(idd)-(res1+res2+res3);
//IMPRIME NA TELA:
JOptionPane.showMessageDialog(null, "Estimado: \n" + resultado);
}
}
EXERCICIO 2:
import javax.swing.JOptionPane;
public class Exercicio2 {
public static void main(String[] args) {
//variaveis
double val,res, ipi;
int cod;
String qtde=JOptionPane.showInputDialog(null,"Qtde de Peça","1");
int qtdp = Integer.parseInt(qtde);
String qt=JOptionPane.showInputDialog(null, "Codigo da Peça");
cod = Integer.parseInt(qt);
String uni=JOptionPane.showInputDialog(null,"Valor unitário da Peça","199");
val = Double.parseDouble(uni);
String ip=JOptionPane.showInputDialog(null,"Valor IPI","10");
ipi = Double.parseDouble(ip);
//formula:
res=(val*qtdp)*(ipi/100+1);
//IMPRIME:
JOptionPane.showMessageDialog(null, "Valor Estimad0 com IPI: \n" + res);
}
}
EXERCICIO 3
import javax.swing.JOptionPane;
public class Exercicio3 {
public static void main(String[] args) {
//variaveis
double val,res,iss=0, aux=0;
int cod,qtdp=0, cont=0, iten=0;
do{
String cd=JOptionPane.showInputDialog(null, "Digite o Codigo da Prouto ou \n 0 (zero) para sair");
...