1 2 3 4 5 6 7 8 9 10 11 12 13 14
import java.net.InetAddress; import java.net.UnknownHostException; public class C { public static InetAddress getAddress() throws UnknownHostException { return null; } public static void main(String[] args) throws Exception { System.out.println(getAddress().toString()); } }