Write a java program the displays the state bird and flower

Assignment Help JAVA Programming
Reference no: EM131251052

1. Write a Java program the displays the State bird and flower. You should use your IDE for this exercise. 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

2- Design a class named Clock. You should use your IDE for this exercise. The class contains private data fields for startTime and stopTime, a no argument constructor that initializes the startTime to the current time, a method named start() that resets the startTime to the given time, a stop() method that sets the endTime to the given time and a getElapsedTime() method that returns the elapsed time in seconds. Create a TestClock class to construct a Clock instance and return the elapsed time. Command line arguments should be used to send the start and end times. You should use the java.time classes. Here is sample run:

java TestClock 11:45:12 11:48:13 Elapsed time in seconds is: 181

3. Create your own simple Java application to generate X random Integer values between 0 and Y. Use command line arguments for entry of X and Y.

Demonstrate your code compiles and runs without issue using screen captures as appropriate.

Try other student's code, adding additional functionality as appropriate.

4. Write a Java program the displays the US State capital and population.

The program should prompt the user to enter a State and print both the State Capital and Population.

The user should be able to enter a State without worrying about case. (e.g. Users could enter California, california, CALIFORNIA 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.

See the attach table

State Capital Population

Alabama Montgomery 200,983

Alaska Juneau 31,118

Arizona Phoenix 1,418,041

Arkansas Little Rock 184,081

California Sacramento 454,330

Colorado Denver 556,835

Connecticut Hartford 124,848

Delaware Dover 32,135

Florida Tallahassee 156,612

Georgia Atlanta 419,122

Hawaii Honolulu 377,260

Idaho Boise 190,122

Illinois Springfield 114,738

Indiana Indianapolis 784,242

Iowa Des Moines 194,311

Kansas Topeka 122,377

Kentucky Frankfort 27,741

Louisiana Baton Rouge 224,097

Maine Augusta 18,560

Maryland Annapolis 36,217

Massachusetts Boston 569,165

Michigan Lansing 116,941

Minnesota St. Paul 276,963

Mississippi Jackson 179,298

Missouri Jefferson City 39,636

Montana Helena 25,780

Nebraska Lincoln 236,146

Nevada Carson City 52,457

New Hampshire Concord 40,687

New Jersey Trenton 85,402

New Mexico Santa Fe 62,203

New York Albany 95,658

North Carolina Raleigh 326,653

North Dakota Bismarck 55,532

Ohio Columbus 730,008

Oklahoma Oklahoma City 528,042

Oregon Salem 146,120

Pennsylvania Harrisburg 48,950

Rhode Island Providence 178,126

South Carolina Columbia 116,331

South Dakota Pierre 13,876

Tennessee Nashville 546,719

Texas Austin 681,804

Utah Salt Lake City 178,605

Vermont Montpelier 8,035

Virginia Richmond 192,494

Washington Olympia 42,514

West Virginia Charleston 53,421

Wisconsin Madison 220,332

Wyoming Cheyenne 55,362

5. Create your own data file consisting of integer, double or String values.

Create your own unique Java application to read all data from the file echoing the data to standard output. After all data has been read, display how many data were read. For example, if 10 integers were read, the application should display all 10 integers and at the end of the output, print "10 data values were read"

Demonstrate your code compiles and runs without issue.

Reference no: EM131251052

Questions Cloud

How did the author approach the issue : Describe how you could apply the information you learned in the article to your current or future work situation. Is there an advocacy, communication approach, or other alternative method that could be implemented to address the issue or concern me..
Categorizes the investment as available-for-sale security : Derson acquires 10 percent of the outstanding voting shares of Barringer on January 1, 2013, for $102,520 and categorizes the investment as an available-for-sale security. An additional 20 percent of the stock is purchased on January 1, 2014, for $23..
Challenges of information vandalism : Do you agree or disagree with Professor Goldman's argument? What can Wikipedia do to combat the challenges of information vandalism and copyright/plagiarism issues?
Power plant on gilligans island is producing air pollution : Your power plant on Gilligan's Island is producing too much air pollution. -provide Excel document showing all calculation in appendixes choose the best option for Gilligan's Island.
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. The program should prompt the user to enter a State and print both the State bird and flower.
Explain the five-step model of thinking critically : Explain the Five-Step Model of Thinking Critically, giving a brief description of each step. This should be no more than 50 words of the 300-word minimum
Aasb 16 leases and its impact on the financial position : Recommendations or actions that can be taken by the company to prepare for the application of the new standard. This should be presented in the form of a conclusion.
Challenges of information vandalism : Do you agree or disagree with Professor Goldman's argument? What can Wikipedia do to combat the challenges of information vandalism and copyright/plagiarism issues?
Which lottery has the higher variance : In the second lottery, there is a 0.40 probability that the outcome is 3, and a0.40 probability that the outcome is 4. Each of the other outcomes has a probability 0.05. Which lottery has the higher variance?

Reviews

Write a Review

JAVA Programming Questions & Answers

  Sense a slightly negative attitude

While executing a project, you sense a slightly negative attitude in your team.Which type of document do you now need, among others, to better understand and then be able to improve the situation?

  Create a class named blooddata that includes fields

Create a class named BloodData that includes fields that hold a blood type (the four blood types are O, A, B, and AB) and an Rh factor (the factors are + and -). Create a default constructor that sets the fields to "O" and "+", and an overloaded c..

  Total amount of capital gain or loss

Determine the total amount of your capital gain or loss using (a)FIFO (first in, first out) accounting and (b) LIFO (last in, first out) accounting (that is assuming that you keep your stock certification in (a) a queue or (b) a stack using C lang..

  Write an application class that contains several methods

Write a driver class. This class should use the main method to call four methods in the application class that will display our JOptionPanes - Write an application class that contains several methods.

  Javascript validation - cgi program

CGI mailer script form-mail.pl to your server's cgi-bin directory, and change the permissions on the script to make it executable - BMIS 310

  Elements in a two-dimensional array

Write a value-returning method that returns the number of columns with n elements in a two-dimensional array of chars, where n is a parameter of the method. Include code to test your method.

  Write a java program that can serve as a simple calculator.

Write a Java program that can serve as a simple calculator. This calculator keeps track of a single number (of type double) that is called result and that starts out as 0.0.

  Create a student class and driver

Create a Student Class and Driver. List of Courses Taken (you may use an ArrayList type, or a linked list). will display all of the students in the formatted form.

  What are the diagrams defined in the uml standard

Why does the following code give a compiler error? How should it be fixed? What are the diagrams defined in the UML Standard. Give a one or two sentence description of each one.

  What is the output of the following program

How can you tell whether an exception is checked or unchecked? What is required of checked exceptions that is not required of those that are unchecked? What is the output of the following program

  Gui program to print the rectangle of stars.

Error check for bad input: alphabetic characters or negative numbers. Do not end the program but remind the user of the proper input.

  Write the classic arcade game of breakout

For each instance variable in your program, explain why you chose to make it an instance variable rather than a local variable - How did you test whether the game would end correctly in this second case? Did you make any changes to the code when test..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd