Advertisement
gastaojunior

exemploSaidaSwingJava

Mar 7th, 2012
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package estrutura.de.dados;
  2.  
  3. /*
  4.  * Importa a classe JOptionPane, responsável por mostrar as informaçoes na tela
  5.  */
  6. import javax.swing.JOptionPane;
  7.  
  8. public class exemploSaidaSwing {
  9.  
  10.     public static void main(String args[]) {
  11.         //Comando de saída em swing.
  12.         JOptionPane.showMessageDialog(null, "Comando de saída em linha de comando");
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement