Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import java.util.Scanner;
  2. import javax.swing.JOptionPane;
  3.  
  4. public class Media {
  5.  
  6. public static void main(String[] args) {
  7. Scanner sc = new Scanner (System.in);
  8. int cc;
  9.  
  10. JOptionPane.showInputDialog("informe sua idade: ");
  11. cc = sc.nextInt();
  12.  
  13. JOptionPane.showConfirmDialog(null,"Sua idade será" + (cc+1));
  14.  
  15.  
  16. }
  17.  
  18.  
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement