Computer Science, asked by arpitachoudhary53, 11 months ago

How we can write a program in java

Answers

Answered by niteshkuriyal68
0

Here is an example of Hello World Program in JAVA.

class HelloWorld

{

public static void main(String[]args)

{

System.out.println("Hello World!");

}

}

Similar questions