Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. import javax.swing.JOptionPane;
  2. public class JOptionPane{
  3. public static void main (String[] args){
  4. String bi1 =
  5. JOptionPane.showInputDialog("Digite a nota do 1° bimestre" );
  6. String bi2 =
  7. JOptionPane.showInputDialog ("Digite a nota do 2° bimestre");
  8. String bi3 =
  9. JOptionPane.showInputDialog ("Digite a nota do 3° bimestre");
  10. String bi4 =
  11. JOptionPane.showInputDialog ("Digite a nota do 4° bimestre");
  12.  
  13. double b1 = Double.parseDouble(bi1);
  14. double b2 = Double.parseDouble(bi2);
  15. double b3 = Double.parseDouble(bi3);
  16. double b4 = Double.parseDouble(bi4);
  17.  
  18. double media = ((b1 *2) + (b2 * 2) + (b3 * 3) + (b4 * 3))/10;
  19.  
  20.  
  21.  
  22.  
  23. //O que aparece dentro //nome da janela
  24. JOptionPane.showMessageDialog(null, "Sua média é : " + media, "Média Final", JOptionPane.PLAIN_MESSAGE);
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement