+ 1
How do you begin to program java?
3 odpowiedzi
0
But what you want to program in Java?
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
}
}
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
}
}