|
Pls some one to help mi wit this code
PLS some one to help me wit this code because it's says that there is some error but I can't find the error.
//For example
import javax.swing.*;
import java.util.*;
public class TestJOptionPane
{
public static void main(String[]args)
{
Date currentDate = new Date();
System.out.println("Hi! What is your name?");
System.out.println("My name is Nikolay Ivanov\n"+ currentDate)
JOptionPane.showMessageDialog(null,"nik!\n" + currentDate,
"application output",
JOptionPane.QUESTION_MESSAGE);
}
}
|