Write a Java program the displays the State bird and flower

Write a Java program the displays the State bird and flower. You should use your IDE for this exercise. You should also use Java classes to their full extent to include multiple methods and at least two classes. The program should prompt the user to enter a State and print both the State bird and flower. The user should be able to enter a State without worrying about case. (e.g. Users could enter Maryland, maryland, MARYLAND or any other possible combination of lower and upper case characters. States may also contain leading and trailing white spaces. Hint: Store the State information in a multi-dimensional array. The program should continue to prompt the user to enter a state until \"None\" is entered. You will need to do some research to find the State birds and flowers. Here is a sample run:

Enter a State or None to exit:

Maryland

Bird: Baltimore Oriole

Flower: Black-eyed Susan

Enter a State or None to exit:

Delaware

Bird: Blue Hen Chicken

Flower: Peach Blossom

Enter a State or None to exit:

None

Solution

StateInformationMain.java


import java.util.Scanner;

public class StateInformationMain {

   public static void main(String[] args) {
       Scanner scan = new Scanner(System.in);
       StateInformation inform = new StateInformation();
       String states[] =inform.getState();
       while(true){
       boolean found = false;
       System.out.println(\"Enter a State or None to exit:\");
       String state = scan.nextLine();
       if(state.equalsIgnoreCase(\"none\")){
           break;
       }
       for(int i=0; i<states.length; i++){
           if(states[i].equalsIgnoreCase(state)){
               System.out.println(\"Bird: \"+inform.getBird()[i]);
               System.out.println(\"Flower: \"+inform.getFlower()[i]);
               found = true;
               break;
           }
       }
       if(found == false){
           System.out.println(\"No Details Found. Pleae update the details for this state in array\");
       }
       }
   }

}

StateInformation.java


public class StateInformation {

   private String state [] = {\"Maryland\", \"Delaware\"};
   private String bird [] = {\"Baltimore Oriole\", \"Blue Hen Chicken\"};
   private String flower [] = {\"Black-eyed Susan\", \"Peach Blossom\"};
   public StateInformation(){
      
   }
   public String[] getState() {
       return state;
   }
   public void setState(String[] state) {
       this.state = state;
   }
   public String[] getBird() {
       return bird;
   }
   public void setBird(String[] bird) {
       this.bird = bird;
   }
   public String[] getFlower() {
       return flower;
   }
   public void setFlower(String[] flower) {
       this.flower = flower;
   }
}

Ouput:

Enter a State or None to exit:
Maryland
Bird: Baltimore Oriole
Flower: Black-eyed Susan
Enter a State or None to exit:
Delaware
Bird: Blue Hen Chicken
Flower: Peach Blossom
Enter a State or None to exit:
none

}

Output:

Enter a State or None to exit:
Maryland
Bird: Baltimore Oriole
Flower: Black-eyed Susan
Enter a State or None to exit:
Delaware
Bird: Blue Hen Chicken
Flower: Peach Blossom
Enter a State or None to exit:
none

Write a Java program the displays the State bird and flower. You should use your IDE for this exercise. You should also use Java classes to their full extent to
Write a Java program the displays the State bird and flower. You should use your IDE for this exercise. You should also use Java classes to their full extent to

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site