How do you begin to program java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How do you begin to program java?

3rd Dec 2016, 7:58 AM
Kefa Steven
Kefa Steven - avatar
3 Answers
0
But what you want to program in Java?
3rd Dec 2016, 8:56 AM
Akshay Khandizod
Akshay Khandizod - avatar
0
If you want to start programing this is the basic Hello World program code: public class Program //class name { public static void main(String[] args) // the main method from where execution starts { System.out.println("Hello World");// The statement(command) that prints Hello World } }
3rd Dec 2016, 9:00 AM
Akshay Khandizod
Akshay Khandizod - avatar
0
If you want to start programing this is the basic Hello World program code: public class Program //class name { public static void main(String[] args) // the main method from where execution starts { System.out.println("Hello World");// The statement(command) that prints Hello World } }
3rd Dec 2016, 9:01 AM
Akshay Khandizod
Akshay Khandizod - avatar