“Спецификатор формата на Java” Ответ

Спецификатор формата на Java

        int input = 42;
        System.out.print("Prefixed with necessary zeroes to make output length a total of 8 characters, including the positive sign: " + String.format("%+08d\n", input)); // This will print +0000042 
        System.out.print("Octal output: " + String.format("%o\n", input)); // This will print 52
        System.out.print("Hex output: " + String.format("%x\n", input)); // This will print 2a
CompSciGeek

Форматирование вывода Java

// Here is an example from https://docs.oracle.com/javase/tutorial/java/data/numberformat.html

System.out.format("The value of " + "the float variable is " +
     "%f, while the value of the " + "integer variable is %d, " +
     "and the string is %s", floatVar, intVar, stringVar); 
CompSciGeek

Ответы похожие на “Спецификатор формата на Java”

Вопросы похожие на “Спецификатор формата на Java”

Больше похожих ответов на “Спецификатор формата на Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования