Start coding with JAVA in 10 minutes! ☕

72 Views
Published
#java #javatutorial #javacourse

This is a beginner's course to help you get started coding with Java ☕

00:00:00 intro
00:01:00 JDK download
00:01:57 IDE download
00:03:34 new project setup
00:04:09 Main.java
00:04:30 Zoom in/out
00:05:01public static void main(String[] args){}
00:05:43 How to run a java program
00:06:10 print()
00:07:28 println()
00:07:46 \n escape sequence
00:08:36 single line comments
00:09:06 multi-line comments
00:09:33 tips & tricks

JDK download: https://www.oracle.com/java/technologies/downloads/
IDE download: https://www.jetbrains.com/help/idea/installation-guide.html

public class Main {

public static void main(String[] args){

// THIS IS MY FIRST JAVA PROGRAM

/*
This
is
a
multi-line
comment
*/

System.out.println("I like pizza!");
System.out.println("It's really good!");
System.out.println("Buy me pizza!");
}
}
Category
Bro Code
Tags
java tutorial, java course, java programming
Be the first to comment