public class ChristmasProjectNestedLoops
{
String[] d = {"first","second","third","fourth","fifth","sixth","seventh","eighth","ninth","tenth","eleventh","twelth"};
String[] items = { "A partridge in a pear tree", "two turtle doves, and" , "three french hens," , "four calling birds," ,
"five golden rings,", "six geese a laying,", "seven swans a swimming," ,"eight maids a milking,", "nine ladies dancing,"
,"ten lords a leaping," ,"eleven pipers piping,", "twelve drummers drumming," ,};
{
for (int day = 0; day < d.length; d++)
{
System.out.println("On the %s day of Christmas, my true love gave to me, " + d[day]);
for (int item = day; item >= 0; item --)
{
System.out.print(items[item]);
}
}
}
}