PE

banca321 Reply 5 years 19 weeks ago
계속 presentation error이라고 뜨는데 어디가 잘못된건지 모르겠어요ㅜ
Hyunwoo Reply 5 years 19 weeks ago
제출하신 코드에서 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";