Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
Introduction to Java Programming and Data Structures, Comprehensive Version (11th Edition)
11th Edition
ISBN: 9780134670942
Author: Y. Daniel Liang
Publisher: PEARSON
bartleby

Concept explainers

Question
Book Icon
Chapter 21.5, Problem 21.5.3CP
Program Plan Intro

Program:

//import the util package

import java.util.*;

//class Definition

public class Test {

// main method

public static void main(String[] args) {

//declare a LinkedHashMap

Map<Integer, String> map = new LinkedHashMap<>();

//insert keys and values into the map

map.put("123", "John Smith");

map.put("111", "George Smith");

map.put("123", "Steve Yao");

map.put("222", "Steve Yao");

//print elements present in the map

System.out.println("(1) " + map);

/*print elements in a new Treemap which implements map */

System.out.println("(2) " + new TreeMap<, String>(map));

//check if key equals 123 then print the value

map.forEach((k, v) -> {

if (k.equals("123"))

System.out.println(v);});

}

}

Blurred answer
Students have asked these similar questions
public class Polygon { private double sideLength; private int sides; private String shape; public double getArea () { int n sides; double a sideLength; return ((a * a * n) / (4 * Math.tan((180 / n) 3.14159 / 180))); public void setPolygon (double sl, int sd, String sh) { sides-sd; sideLength-sl; shape=sh; public Polygon (double sl, int sd, String sh) ( sides-sd; sideLengthsl; shape=sh; public String getShape () { return (shape); } public int getSides () { return (sides); } public double getLength () { return (sideLength); } Write a static method named find that takes as a parameter an array of type Polygon named list. The method should print the shapes of each polygon that has an area greater than 500 and return their count. The method prototype is public static int find (Polygon [] list); Note: assume the array is already declared, populated with data in the main method and ready to be used.
Question 2. package sortsearchassigncodeex1; import java.util.Scanner; import java.io.*; // // public class Sortsearchassigncodeex1 {       //         public static void fillArray(Scanner inputFile, int[] arrIn){     int indx = 0; //Complete code                     {         arrIn[indx] = inputFile.nextInt();       indx++;       }   }
JAVA ONLY  public String cleanNumber(String phoneNumber)   {       int digit=0;     String result = "";    String number= "";    for (int i = 0; i < phoneNumber.length(); i++)    {        char ch = phoneNumber.charAt(i);        if (Character.isDigit(ch))        {            number = number + ch;            digit++;        }    }    if(digit == 10)        System.out.println("("+phoneNumber.substring(1,3)+")"+"-"+phoneNumber.substring(4,6)+phoneNumber.substring(7,10));    else        result = "Error";            return result;   }} Argument "(444) 999-1234" Actual (44)-) 99- "" Expected "(444) 999-1234"   "4449991234" (44)-99234 "" "(444) 999-1234"   "444.999.1234" (44)-99.12 "" "(444) 999-1234" What am doing wrong? How can I make the actual look like the expected? What do I have to change?
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education