-1

このヘッダーを使用してメソッドを作成するにはどうすればよいですか

public static String format (int number, int width)

これは、1 つ以上のプレフィックス 0 を含む数値の文字列を返します。文字列のサイズは幅ですか?例を使用する場合format(43, 4)、出力は0043です。

4

1 に答える 1

3

これを試して:

public static String format(int number, int width) {
    return String.format("%0" + width + "d", number);
}
于 2012-10-07T17:39:24.730 に答える