Главная » Программирование для чайников » java | [ Добавить статью ] |
Вывод в консоль java
Быстрое решение вопроса по Java.
В java, чтобы вывести сообщение в консоль, можно использовать следующие функции / методы:
- System.out.print (чтобы вывести число или строку);
- System.out.println (чтобы вывести число или строку и в конце сделать перевод строки);
- System.out.printf (чтобы вывести данные в определенном формате)
Вот простой наглядный пример:
Пример java кода
class PrintfDemo {
public static void main(String args[]) {
System.out.println("Here are some numeric values " +
"in different formats.\n");
System.out.printf("Various Integer formats: ");
System.out.printf("%d %(d %+d %05d\n", 3, -3, 3, 3);
System.out.println();
System.out.printf("Default floating-point format: %f\n", 1234567.123);
System.out.printf("Floating-point with commas: %,f\n", 1234567.123);
System.out.printf("Negative floating-point default: %,f\n", -1234567.123);
System.out.printf("Negative floating-point option: %,(f\n", -1234567.123);
System.out.println();
System.out.println("Line-up positive and negative values:");
System.out.printf("% ,.2f\n% ,.2f\n", 1234567.123, -1234567.123);
}
}
public static void main(String args[]) {
System.out.println("Here are some numeric values " +
"in different formats.\n");
System.out.printf("Various Integer formats: ");
System.out.printf("%d %(d %+d %05d\n", 3, -3, 3, 3);
System.out.println();
System.out.printf("Default floating-point format: %f\n", 1234567.123);
System.out.printf("Floating-point with commas: %,f\n", 1234567.123);
System.out.printf("Negative floating-point default: %,f\n", -1234567.123);
System.out.printf("Negative floating-point option: %,(f\n", -1234567.123);
System.out.println();
System.out.println("Line-up positive and negative values:");
System.out.printf("% ,.2f\n% ,.2f\n", 1234567.123, -1234567.123);
}
}
Данный пример выведет в консоль следующие сообщения:
"Here are some numeric values in different formats.
Various Integer formats: 3 (3) +3 00003
Default floating-point format: 1234567,123000
Floating-point with commas: 1 234 567,123000
Negative floating-point default: -1 234 567,123000
Negative floating-point option: (1 234 567,123000)
Line-up positive and negative values:
1 234 567,12
-1 234 567,12"
Добавлено: 21.05.2012 | Просмотров: 12336 | Рейтинг: 5.0/1 |
Теги:
Комментарии (0) | |