What could you change to make the following code not result in a error?
interface A {
public int one();
public int two();
public int three();
}
public class B implements C {
public int one() {
return 1;
}
}

Q&A Education