You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

C.java 288B

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