设计一个名为Fan的类模拟风扇.这个类包括:1 三个常量SLOW,MEDIUM和FAST,其值分别为1,2,3,表示风扇的速度;2 int类型的数据域speed表示风扇的
设计一个名为Fan的类模拟风扇.这个类包括:1 三个常量SLOW,MEDIUM和FAST,其值分别为1,2,3,表示风扇的速度;2 int类型的数据域speed表示风扇的速度;默认值为SLOW3 boolean型的数据域on表示风扇是否
设计一个名为Fan的类来代表风扇。这个类包括: 1 三个常量SLOW,MEDIUM和FAST,其值分别为1,2,3,表示风扇的速度; 2 int类型的数据域speed表示风扇的速度;默认值为SLOW 3boolean型的数据域on表示风扇是否打开;默认值为false 4 double型的数据域radius表示风扇的半径;默认值为5 5 string型的数据域color表示风扇的...
Fan fan1=new Fan(); Fan fan2=new Fan(); fan1.setSpeed(Fan.FAST); fan1.setRadius(10); fan1.setColor("yellow"); fan1.setOn(true); fan2.setSpeed(Fan.MEDIUM); fan2.setRadius(5); fan2.setColor("blue"); fan2.setOn(false); System.out.println(fan1.toString()); System.out.prin...