Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This question has been posted before, but NOT with a properly corrected answer that gives expected output. Can anyone answer this and provide a correct

This question has been posted before, but NOT with a properly corrected answer that gives expected output. Can anyone answer this and provide a correct java answer?

Modify the program below to prompt the user enter the capital for a state. Upon receiving the user input, the program reports whether the answer is correct. Create and complete a two-dimensional array to store the 50 states and their capitals. Display all 50 states and ask the user to enter its capital, one at a time. Compare the user input with the array. Count the correct answers. Display the total correct count. Example: What is the capital for Alabama? What is the capital for Alaska? ... ... ... What is the capital for Delaware? ... ... ... Total correct count: 35 If the user entered a correct answer, display the next question; If the user entered a wrong answer for Delaware, display a message... Sorry, the capital for Delaware is Dover. Note: 1.The user's answer is not case-sensitive (equalsIgnoreCase) Use println

import java.util.Scanner; public class StateCapital { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); /* FIXME: Delcare... 1. A string variable to store the user input 2. An integer variable to count the total correct answers */ // FIXME: Initialize a multi-dimensional string array // FIXME: Complete the array to store the state and capital names stateCapital[0][0] = "Alabama"; stateCapital[0][1] = "Montgomery"; stateCapital[1][0] = "Alaska"; stateCapital[1][1] = "Juneau"; stateCapital[2][0] = "Arizona"; stateCapital[2][1] = "Phoenix"; stateCapital[3][0] = "Arkansas"; stateCapital[3][1] = "Little Rock"; stateCapital[4][0] = "California"; stateCapital[4][1] = "Sacramento"; stateCapital[5][0] = "Colorado"; stateCapital[5][1] = "Denver"; stateCapital[6][0] = "Connecticut"; stateCapital[6][1] = "Hartford"; stateCapital[7][0] = "Delaware"; stateCapital[7][1] = "Dover"; stateCapital[8][0] = "Florida"; stateCapital[8][1] = "Tallahassee"; stateCapital[9][0] = "Georgia"; stateCapital[9][1] = "Atlanta"; stateCapital[20][0] = "Massachusetts"; stateCapital[20][1] = "Boston"; stateCapital[21][0] = "Michigan"; stateCapital[21][1] = "Lansing"; stateCapital[22][0] = "Minnesota"; stateCapital[22][1] = "St. Paul"; stateCapital[23][0] = "Mississippi"; stateCapital[23][1] = "Jackson"; stateCapital[24][0] = "Missouri"; stateCapital[24][1] = "Jefferson City"; stateCapital[25][0] = "Montana"; stateCapital[25][1] = "Helena"; stateCapital[26][0] = "Nebraska"; stateCapital[26][1] = "Lincoln"; stateCapital[27][0] = "Nevada"; stateCapital[27][1] = "Carson City"; stateCapital[28][0] = "New Hampshire"; stateCapital[28][1] = "Concord"; stateCapital[29][0] = "New Jersey"; stateCapital[29][1] = "Trenton"; stateCapital[40][0] = "South Dakota"; stateCapital[40][1] = "Pierre"; stateCapital[41][0] = "Tennessee"; stateCapital[41][1] = "Nashville"; stateCapital[42][0] = "Texas"; stateCapital[42][1] = "Austin"; stateCapital[43][0] = "Utah"; stateCapital[43][1] = "Salt Lake City"; stateCapital[44][0] = "Vermont"; stateCapital[44][1] = "Montpelier"; stateCapital[45][0] = "Virginia"; stateCapital[45][1] = "Richmond"; stateCapital[46][0] = "Washington"; stateCapital[46][1] = "Olympia"; stateCapital[47][0] = "West Virginia"; stateCapital[47][1] = "Charleston"; stateCapital[48][0] = "Wisconsin"; stateCapital[48][1] = "Madison"; stateCapital[49][0] = "Wyoming"; stateCapital[49][1] = "Cheyenne"; // FIXME: Ask the user to guess the capitals for all 50 states, display one state at a time; Use for loop System.out.println("What is the capital for Delaware?"); // FIXME: Modify the statement below to print total correct count System.out.println("Total correct count: 35"); } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro SQL Server Administration

Authors: Peter Carter

1st Edition

1484207106, 9781484207109

More Books

Students also viewed these Databases questions