Hello everyone, I'm just learning and trying to do a homework problem. I pasted my code in; i keep getting 3 errors that I can't seem to fix no matter what i do.

I pasted those below my program. Help!
CODE
import java.util.GregorianCalendar;
import java.util.Calendar;
public class Lucyscalendar{
public static void main (String args[])
{
//get today's date by creating a new calendar
GregorianCalendar cal = new GregorianCalendar();
//gets the date 100 days from today
String day100 = cal.add(Calendar.DAY_OF_MONTH, 100);
// I want to create a new calendar based on my birthday
GregorianCalendar LucyBirthday = new GregorianCalendar(1988, Calendar.September, 18);
//gives me weekday of my birdthday
int lucyDay =LucyBirthday.get(Calendar.DAY_OF_WEEK);
//i want to get 1000 days from my birthday
int lucyGrand = LucyBirthday.add(Calendar.DAY_OF_MONTH, 10000);
int dayofMonth= cal.get(Calendar.DAY_OF_MONTH);
int month= cal.get(Calendar.MONTH);
int year= cal.get(Calendar.YEAR);
int weekday = cal.get(Calendar.DAY_OF_WEEK);
System.out.println ("A hundred days from today will be " +day100+ ".");
System.out.println( "My birdthday was on a " +lucyDay);
System.out.println("A thousand days from my birthday would be " +lucyGrand+ ".");
}
}
And these are the errors messages:
CODE
Lucyscalendar.java:14: cannot find symbol
symbol : variable September
location: class java.util.Calendar
GregorianCalendar LucyBirthday = new GregorianCalendar(1988, Calendar.September, 18);
^
Lucyscalendar.java:16: incompatible types
found : void
required: java.lang.String
String day100 = cal.add(Calendar.DAY_OF_MONTH, 100);
^
Lucyscalendar.java:22: incompatible types
found : void
required: int
int lucyGrand = LucyBirthday.add(Calendar.DAY_OF_MONTH, 10000);
^