Q:

Java Program to create a new Tree Map with the specified key

0

Program to create a new Tree Map with the specified key.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import java.util.*;  
public class demo1
{  
  public static void main(String args[])
  {  
   TreeMap<Integer,String> treemap=new TreeMap<Integer,String>();      
   treemap.put(1, "C#");
   treemap.put(2, "C++");
   treemap.put(3, "Java");
   treemap.put(4, "Python");
   treemap.put(5, "Perl");
    
   for (Map.Entry<Integer,String> entry : treemap.entrySet())
   {
    System.out.println(entry.getKey() +"="+ entry.getValue());
   }
 }  
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now