How to write a java program called Print
Answers
Answered by
1
Answer:
∆Once you have the Java compiler successfully installed, open a text editor (example, Notepad) and type in the following:
∆ /*
∆ * The HelloWorld Java program.
∆ * prints "Hello World!" on the computer screen.
∆ */
∆ class HelloWorld {
∆ public static void main(String[] args) {
System. out. println("Hello, World!");
∆ }
Similar questions