“Как печатать на консоли в Java” Ответ

Как печатать на консоли в Java

//This is for printing in columns
System.out.println("Hello World!");

//This is for printing in rows
System.out.print("Hello World");

//When im using the double slash its to comment, also remember that you dont need to type Hello World! you can type everything you want
//By the way, you can also do:

int a = 1;
System.out.println(a);

//the result of this is "1" because a is equal to 1 so the programm whill get the data stored in "a" and print it, remember that you can also use "print" instead of "println" it works whit "vairables" too! (oh, the: int a  = 1; is a variable)
Cheerful Cottonmouth

Как печатать в консоли Java

public class ConsoleTest {
    public static void main(String[] args) {
        System.out.println("Console is: " + System.console());
    }
}
Tame Teira

Ответы похожие на “Как печатать на консоли в Java”

Вопросы похожие на “Как печатать на консоли в Java”

Больше похожих ответов на “Как печатать на консоли в Java” по Java

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

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