xxxxxxxxxx
// This is a simple Java program.
// FileName : "HelloWorld.java".
class HelloWorld
{
// Your program begins with a call to main().
// Prints "Hello, World" to the terminal window.
public static void main(String args[])
{
System.out.println("Hello, World");
}
}
xxxxxxxxxx
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
public static void main(String[] args){
System.out.println("Hello World");
}
xxxxxxxxxx
public class HelloWorld {
public static void main(String []args) {
/* println() function to write Hello, World! */
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
public class PrintHelloWorld
{
public static void main(String[] args)
{
//This is the print line. Anything in the Quotation Maks will be printed
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
//simple hello world code for Java
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
xxxxxxxxxx
// Smart Fast
public class className {
public static void main(String[] args){
System.out.println("GOODBYE WORLD !") ;
}
}
xxxxxxxxxx
public class HelloWorld{
public static void main(String []args){
System.out.println("Hello World");
}
}
xxxxxxxxxx
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
xxxxxxxxxx
public class Main{
public static void main(String[] args){
System.out.println("Hello World!");
}
}
xxxxxxxxxx
public class HelloWorld
{
public static void main (String[] args)
{
// Ausgabe Hello World!
System.out.println("Hello World!");
}
}