0

This is the code below and the input for it, its showing mismatch for the second loop, can someone explain why

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class MapDemo {

    public static void main(String[] args) {
        HashMap<Integer, String> hmap = new HashMap<>();
        Scanner in = new Scanner(System.in);

        for (int i = 0; i < 3; i++) {
            Integer a = in.nextInt();
            String b = in.next();

            hmap.put(a, b);
        }

        for (Map.Entry<Integer, String> m : hmap.entrySet()) {
            System.out.println(m.getKey() + " " + m.getValue());
        }
    }
}

Input:

10654
Max Bupa Health Insurance
10321
SBI Health Insurance
20145
IFFCO Tokio Two Wheeler Insurance

0 Answers0