Part 1 - Learn Basic Java
We highly recommend using w3 schools Java tutorial to learn more & w3 schools exercises to test your Java knowledge
Introduction
Hello, welcome to this Java basics course.
Hello world in Java
public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
To print somthing to the concole in java you use System.out.println();
and pass through a piece of text in string format in the brackets.
Now of course in Java you can NOT just type the print function by itself as it will cause an error as in Java you would need to put your code into the main class, we will explain this in more detail later on.
Variables
w3 schools Java exercises
Try w3 school's Java exercises to test your Java knowledge
Last updated
Was this helpful?