i need run this code  class temp {         public static void function(int [] arr)         {                 int n = arr.length;                 Hashtable hash = new Hashtable<>();                 for(int i=0; i

EBK JAVA PROGRAMMING
8th Edition
ISBN:9781305480537
Author:FARRELL
Publisher:FARRELL
Chapter16: Graphics
Section: Chapter Questions
Problem 1DE
icon
Related questions
Question

i need run this code 

class temp
{
        public static void function(int [] arr)
        {
                int n = arr.length;

                Hashtable<Integer, Integer> hash = new Hashtable<>();

                for(int i=0; i<n;i++)
                {
                        if (hash.containsKey(arr[i]))
                        {
                                        int a = hash.get(arr[i]);
                                        if(a==2)
                                        {
                                                System.out.println("element that is present three times is: "+arr[i]);
                                        }
                                        else
                                        {
                                                hash.put(arr[i], a+1);
                                        }
                        }
                        else
                        {
                                hash.put(arr[i], 1);
                        }

                }
        }
        public static void main(String args[])
                {
                        //create an array of 101 elements
                        int [] arr = { 1, 2, 3, 4, 5, 6, 6, 8, 8, 8};
                        //call the function
                        function(arr);
        }
}

O Debug
I Stop
C Share
H Save
{} Beautiry
Language Java
Run
Main.java
18
else
19
{
20
hash.put(arr[i], a+1);
21
}
22
}
23
else
24
{
25
hash.put(arr[i], 1);
26
27
28
29
30
public static void main(String args[])
31
input
stderr
Compilation failed due to following error(s).
Main.java:7: error: cannot find symbol
Hashtable<Integer, Integer> hash = new Hashtable<>();
symbol:
class Hashtable
location: class temp
9:01 PM
Transcribed Image Text:O Debug I Stop C Share H Save {} Beautiry Language Java Run Main.java 18 else 19 { 20 hash.put(arr[i], a+1); 21 } 22 } 23 else 24 { 25 hash.put(arr[i], 1); 26 27 28 29 30 public static void main(String args[]) 31 input stderr Compilation failed due to following error(s). Main.java:7: error: cannot find symbol Hashtable<Integer, Integer> hash = new Hashtable<>(); symbol: class Hashtable location: class temp 9:01 PM
Expert Solution
steps

Step by step

Solved in 5 steps with 3 images

Blurred answer
Knowledge Booster
Hash Table
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT