import javax.swing.JOptionPane;
public class Main {
public static void main(String[] args) {
String name = JOptionPane.showInputDialog("Enter Your Name");
JOptionPane.showConfirmDialog(null,"Hello"+name);
int age = Integer.parseInt(JOptionPane.showInputDialog("Enter Your Age"));
JOptionPane.showConfirmDialog(null,"Your age"+age);
double height = Double.parseDouble(JOptionPane.showInputDialog("Enter Your Height"));
JOptionPane.showConfirmDialog(null,"You are"+height);
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)