class ShowQuarter { public static void main (String args[]) { int taxMonth = 10; String taxQuarter; if (taxMonth == 1 || taxMonth == 2 || taxMonth == 3) taxQuarter = "1st Quarter"; else if (taxMonth == 4 || taxMonth == 5 || taxMonth == 6) taxQuarter = "2nd Quarter"; // more conditions would appear here else taxQuarter = "Not Valid"; System.out.println("Your current Tax Quarter is: " + taxQuarter ); } }