문제점 매직넘버를 사용합니다. 매직넘버란 무엇인가 살펴보자면 아래와 같은 코드를 사용하고 있습니다. if (100 < input.length()) 이렇게 되었을 경우 문제점은 1. 의미를 이해하기 어렵습니다.2. 복수의 장소에서 사용된다면 변경하기 힘듭니다. 해결책 상수를 사용하면 됩니다. public static final int MAX_INPUT_LENGTH = 100; 연습문제 문제public class Robot { private final String name; public Robot(String name) { this.name = name; } public void order(int command) { if (command == 0) { System.out.println(name + " wal..