Run ❯
Get your
own Java
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import java.util.HashMap; public class Main { public static void main(String[] args) { HashMap
capitalCities = new HashMap
(); capitalCities.put("England", "London"); capitalCities.put("Germany", "Berlin"); capitalCities.put("Norway", "Oslo"); capitalCities.put("USA", "Washington DC"); capitalCities.replaceAll((k, v) -> "The capital of " + k + " is " + v); System.out.println(capitalCities); } }
{USA=The capital of USA is Washington DC, Norway=The capital of Norway is Oslo, England=The capital of England is London, Germany=The capital of Germany is Berlin}