public class Demo3 implements Parent {
public int count(int i) {
return i % 9;
}
public static void main(String[] args) {
________________
int i = p.count(20);
}
}
在横线上填什么能让程序编译成功______---单选.
A : Demo3 p = new Demo3();
B : Parent p = new Demo3();
C : Demo3 p = new Parent();
D : Parent p;