How to hashMap an array in Java?

Java Array Program, Need Help On Last Part?

  • I have to display array integers, to where the user inputs one, it searches the arrays for it, and lists whether it finds it or not. This is what the output has to look like. The x array values are: x[0] is 10 x[1] is 20 x[2] is 30 x[3] is 40 x[4] is 50 The y array values are: y[0] is 1 y[1] is 17 y[2] is 18 y[3] is 2 y[4] is 3 Enter a number between -100 and 100: 20 Searching entire array. The number was found at position 1. The loop executed 5 times. Searching until found. The number was found at position 1. The loop executed 2 times. I have up until Enter a Number Between -100 and 100: Here is my code: import java.util.*; public class ArrayPractice { public static void main(String[] args) { int search = 0, xindex = -1; int [] x = {10,20,30,40,50}; int [] y = {1,17,18,2,3}; boolean found = false; Scanner scan = new Scanner (System.in); System.out.println("The X array values are: "); for (int i = 0; i < x.length; i++) { System.out.print("x[" + i + "] is "+x[i]); System.out.println(" "); } System.out.println("The Y array values are: "); for (int i = 0; i < y.length; i++) { System.out.print("x[" + i + "] is "+y[i]); System.out.println(" "); } System.out.print("Enter a number between -100 and 100: "); int blah = scan.nextInt(); System.out.println(" "); System.out.println("Searching entire array."); } } How do I go about finishing this? Note the output has to look exactly like above.

  • Answer:

    @Kekoa is correct. When searching for a number it should only have to execute the loop once. running more than once will just return the same result as the first loop. You may have meant that you need to count the number of occurrences, so if the array is: int arr[10,11,12,10,13]; if i searched for the number 10 it would return the indices: 0 and 4, and the number of occurrences: 2.

xotreyfl... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

That's a great question - and you've done a good job so far. Note that in the output there appears to be 2 sets of analysis: 1) the X array is searched thoroughly for *all* instances of the number input 2) the X array is searched one time until an instance of the number input is found and then searching terminates Also note that the Y array is never searched! It look like your prof is handing you a "red herring" there to throw you off-track. :) So, right after you print out "Searching entire array." you need to put a for loop that goes from start to finish of the X array and prints out the index of every value that equals the input (hint: you'll need an if statement inside the for loop.) For each iteration of the loop, you need to increment the variable "search." After that for loop, you print out the value of the "search" variable and then print out "searching until found" Next, you do something very similar to the first for loop except that, if you find a match, you want to set the "found" variable to "true" You also need to modify the condition of the for statement to be true only when "found" is "false" **AND** you haven't reached the end of the array. How do you do that? Boolean Logic! (one of my favorite studies - I'm very excited for you that you get to learn Boolean Logic) As an example, I can buy a burrito only if I'm hungry **AND** my bank account is **NOT** empty, so I can write that in C++ (very similar syntax to java) as: bool bHungry = true; bool bBankEmpty = false; if (bHungry && !bBankEmpty) { BuyBurrito(); } Note the double ampersand (&&) is the "and" operator in Boolean Logic that is implemented in C++. I think it's the same in java, but you'll have to research that.

Not sure I understand what kind of output they are looking for when they say the loop executed 5 times, or 2 times. Just do a for loop that goes through the arrays and checks the value at the given index. I think that is what they are looking for: for(int i=0; i<x.length; i++) { if(x[i] == blah) { // i is the position that blah was found at in array x } } Another piece of advice; try to name your variables things that are more meaningful. Hope that helps.

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.