vaРpublic class Example5_13 {Р public static void main(String args[]) {Р Simulator simulator = new Simulator();Р simulator.playSound(new Dog());Р simulator.playSound(new Cat());Р }Р}Р习题七(第7章)Р一、问答题Р1.有效。Р2.可以。Р3.不可以。Р4.一定是。Р二、选择题Р1.C。2.C。Р三、阅读程序Р1.大家好,祝工作顺利!Р2.p是接口变量。Р3.你好 fine thanks。Р4.属于上机实习程序,解答略。Р四、编程题Рimport java.util.*;Рpublic class E {Р public static void main (String args[ ]){Р Scanner reader = new Scanner(System.in);Р double sum = 0;Р int m = 0;Р while(reader.hasNextDouble()){Р double x = reader.nextDouble();Р assert x< 100:"数据不合理";Р m = m+1;Р sum = sum+x;Р }Р System.out.printf("%d个数的和为%f\n",m,sum);Р System.out.printf("%d个数的平均值是%f\n",m,sum/m); Р }Р}Р习题八(第8章)Р一、问答题Р1.不是。"\\hello"是。Р2.4和3。Р3.false和true。Р4.负数。Р5.是true。Р6.3和-1。Р7.会发生NumberFormatException异常。Р二、选择题Р1.A。2.C。3.B。4.D。5.C。