import java.util.Date;
public class datePc
{
public static void main (String[] args)
{
Date today = new Date();
System.out.println(today.toString());
}
}
//output : Wed Feb 15 08:38:00 IST 2017
public class datePc
{
public static void main (String[] args)
{
Date today = new Date();
System.out.println(today.toString());
}
}
//output : Wed Feb 15 08:38:00 IST 2017
No comments:
Post a Comment