ProgrammersTalk
Tuesday, September 3, 2019
Hello World program in Java
This Simple "Hello World" program helps to you that how Java programs are constructed and executed.
/*Simple program to print HELLO WORLD*/
class Hello
{
public static void main(String args[])
{
System.out.println("HELLO WORLD");
}
}
Newer Posts
Home
Subscribe to:
Comments (Atom)
Check whether a string is Palindrome or not , in java
Check whether a string is palindrome or not.. This program helps to find the given string is palindrome or not. //Program cod...