如题 ``` public static String getDificultyString(int difficulty) { return new String(new char[difficulty]).replace('\0', '0'); } ```