+ 3
How do you code hello world
This is my first time coding and I would like some help please
3 Answers
+ 1
I like Agus answer, it is best answer for sure.. but to keep it simple for the first time coder..
import java.util.*;
import java.util.Scanner;
class YourClass
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}
+ 1
thankyou so much