整数入力 (N) を取り、次の N 日間の誕生日を返すメソッドが必要です。コードを実行するのは非常に難しいと感じています。以下は、私がどのように機能させたいかを示す単なるコードです。これは決して機能するコードではありません。どんな助けでも大歓迎です。
/* print out all the birthdays in the next N days */
public void show( int N){
Calendar cal = Calendar.getInstance();
Date today = cal.getTime();
// birthdayList is the list containing a list
// of birthdays Format: 12/10/1964 (MM/DD/YYYY)
for(int i = 0; i<birthdayList.getSize(); i++){
if(birthdayList[i].getTime()- today.getTime()/(1000 * 60 * 60 * 24) == N)){
System.out.println(birthdayList[i]);
}
}
}