- Código:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
import javax.swing.JOptionPane; public class Main { public static void main(String args[]) { String nombre = JOptionPane.showInputDialog("Ingrese su nombre:"); JOptionPane.showMessageDialog(null, "Hola " + nombre, "Bienvenido", JOptionPane.PLAIN_MESSAGE); // el primer algumento ( null ) indica la posicion , null indica // el centro de la pantalla } } - Más
Links:
No hay comentarios.:
Publicar un comentario