I don't Konw Too
this is the whole codes
public class PrintDate {
public static void main(String [] args)
{
System.out.println(new Date());
}
}
Have you imported the Date class?import java.util.Date;
public class Test
{
public static void main(String[] args)
{
System.out.println(new Date());
}
}
Ted.