본문 바로가기

study/Programming

[Java] HashMap

728x90

* 도시이름과 나라이름을 저장하는 HashMap을 만들고 검색>출력한다.

 

import java.util.*;

public class HashMapAssign10 {

	public static void main(String[] args) {
		Map<String, String> map= new HashMap<String, String>();
		
		map.put("서울", "한국");
		map.put("브라질리아","브라질");
		map.put("아디스아바바","에티오피아");
		
		System.out.println("도시 이름을 입력하세요.");
		Scanner scanner= new Scanner(System.in);
		String city= scanner.next();
		
		if(map.containsKey(city)==true) {
			System.out.println(city+ "은(는) " +map.get(city)+"의 도시입니다.");
		}else System.out.println(city+"에 대한 정보가 없습니다.");
	}

}

 

<출력>

728x90
반응형