diff --git a/Second.java b/Second.java new file mode 100644 index 0000000..114ef51 --- /dev/null +++ b/Second.java @@ -0,0 +1,7 @@ +import javax.swing.JOptionPane; + +public class Second { + public static void main(String[] args){ + JOptionPane.showMessageDialog(null, "message", "title", JOptionPane.ERROR_MESSAGE); + } +}