This what I have so far:
import java.util.*;
import java.text.*;
public class Calendar {
public static void main(String[] args) {
Date current = new Date ();
DateFormat DF = DateFormat.getDateInstance();
String str = DF.format(current);
System.out.println("Date: " + str);
}
}
I'm not sure how to add the locale or how to hard code the date.
Thanks
Felissa
Thanks for your time!!