Room for improvement?
Doing the following program for a class. Any redundancy that could be improved upon? Thank anyone who answers in advance. public class SixDays { public static void main(String[] args) { dayOne(); pearTree(); dayTwo(); turtleDoves(); pearTree(); dayThree(); frenchHens(); turtleDoves(); pearTree(); dayFour(); callingBirds(); frenchHens(); turtleDoves(); pearTree(); dayFive(); goldenRings(); callingBirds(); frenchHens(); turtleDoves(); pearTree(); daySix(); geeseLaying(); goldenRings(); callingBirds(); frenchHens(); turtleDoves(); pearTree(); } public static void dayOne() { System.out.println("On the 1st day of Christmas, my true love sent to me"); } public static void dayTwo() { System.out.println("On the 2nd day of Christmas, my true love sent to me"); } public static void dayThree() { System.out.println("On the 3rd day of Christmas, my true love sent to me"); } public static void dayFour() { System.out.println("On the 4th day of Christmas, my true love sent to me"); } public static void dayFive() { System.out.println("On the 5th day of Christmas, my true love sent to me"); } public static void daySix() { System.out.println("On the 6th day of Christmas, my true love sent to me"); } public static void pearTree() { System.out.println("a partridge in a pear tree"); } public static void turtleDoves() { System.out.println("two turtle doves, and"); } public static void frenchHens() { System.out.println("three French hens,"); } public static void callingBirds() { System.out.println("four calling birds,"); } public static void goldenRings() {