Enumerated sets. The weather can be in one of three states [sunny, overcast, raining]. Create an enumerated set (call the type state) and state variable to model the current weather. Extend this into an application that allows a user to indicate if the weather is improving or deteriorating, a suitable message should be output each time the state changes. The application should allow user inputs (a char will do) until an unrecognized char is entered. A partial solution is below

boolean finished=false;
char command;
while(!finished) {
System.out.println("Weather state :"+current);
System.out.println("Enter i for improving, d for deteriorating:");

command =
switch(command) {
case 'i': current = improveState(current);
break;
case 'd': current = worsenState(current);
break;
default: finished=true; //any other char ends program
} // case
} // while

public static state improveState(state present)
{
// return an improved state
}

public static state worseState(state present)
{
// return a worsened state
}
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.