제출하신 코드에서
return "color" + " " + this.getColor() + "\n"
+ "radius" +" "+this.getRadius()+" "
+ "\n" +"fan is off";
부분이 있습니다.
여기서
this.getRadius()+" " 부분이 있는데 " "를 빼고 submit 하시면 됩니다.
아래의 코드로 바꾸시면 됩니다.
return "color" + " " + this.getColor() + "\n"
+ "radius" +" "+this.getRadius()
+ "\n" +"fan is off";