jonasemanuel20

Untitled

Feb 18th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 KB | None | 0 0
  1. package javaswing;
  2. import javax.swing.JOptionPane;
  3. public class Idade {
  4.     public static void main(String[] args) {
  5.        String i;
  6.        i = JOptionPane.showInputDialog("Insira sua idade: ");
  7.        analisaIdade(Integer.parseInt(i));
  8.     }
  9.     public static void analisaIdade(int i){
  10.         if(i >= 21){
  11.             JOptionPane.showMessageDialog(null, "Você já é maior de idade !");
  12.         }
  13.         else{
  14.             JOptionPane.showMessageDialog(null, "Você ainda é menor de idade !");
  15.         }
  16.     }
  17.    
  18. }
Add Comment
Please, Sign In to add comment