String months[] = { null , "Jan" , "Feb" , "Mar" , "Apr",
"May", "Jun", "Jul", "Aug", "Sep", "Oct",
"Nov", "Dec" };
try
{
System.out.print("Enter month <1 for Jan - 12 for Dec>: ");
m = input.nextInt();
MonthData();
}
catch(Exception e)
{
System.out.println("Invalid month!"); //error message to inform user of wrong input
}
break;
static void MonthData()
{
System.out.println("----------------------------------------");
System.out.println(months[m]+" Expenditure <max 10 items>");
try
{
for(int i=0; i<10; i++)
{
System.out.print("Enter item "+(i+1)+" <Press ENTER to exit> : ");
monthItems[m][i] = input.next();
if (monthItems[m][i].length() == 0)
{
return;
}
else
{
System.out.print("Enter amount : $");
amount[m][i] = input.nextDouble();
System.out.println("");
}
}
}
catch(Exception e)
{
System.out.println("");
}
}
Hi Everyone
Just would like to say this code had a bit of help.But my question is why doesn't the function for December execute properly.
For example, when I clicked on the 12th month it just skips the function and ends the program.
Thanks in advance.