show input dialog java

Solutions on MaxInterview for show input dialog java by the best coders in the world

showing results for - "show input dialog java"
Luciano
04 Sep 2016
1
2import javax.swing.JOptionPane;
3
4public class SimpleInputDialog1 {
5
6    public static void main(String[] args){
7
8        String m = JOptionPane.showInputDialog("Anyone there?");
9        System.out.println(m);
10
11    }
12
13}