Person who wants to learn software is meeting with writing to computer screen "Hello World". That's why our first topic is writing to output from computer "Hello World" with java code. Method of "System.out.println" is used in Java to output from computer.
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Output : Hello World
Dont think about any matters such as "public static void main".I will be describe every method which you see as soon as posibble at next topics.
Comments
Post a Comment