You are on page 1of 1

interface I

void show();

class AD1

public static void main(String[] args)

I o=new I()

public void show()

System.out.print("hi");

};

o.show();

}}

You might also like