Skip to main content

Featured

Game Development Tutorials In Android

Game Development Tutorials In Android Hi Guys,                 We are shortly started Game Development Tutorials in Android Studio. So everyone supports me and share this blogs to your friends. Guys, At this time everyone is freely available to source code and we are provide a video for step by step game developments. you are learn free and feel free to support us. Guys, if you have any question to me, so feel free to comment us. I will try to answer all the question as long as possible.                                                     Thank's                                                                          ...

The Simple Java Program

                     Learn Java Programming Language Part - I 



Download and Install jdk (Java Development Toolkit)

after install jdk set classpath . go to environment variable and set javac.exe classpath on there.

after set the classpath you are able to develop first java application

Open command prompt  and Type: javac  *if this command work you properly set the classpath.

Now Open notepad or any Editor, the best editor is  notepad++. It's free so download on web.



public class HelloWorld
{
  public static void main(String args[])
  {
     System.out.println("Hello World");
  }
}



Save this file : HelloWorld.java             // in c drive or any other place..

                         open command prompt



Compile Program : javac HelloWorld.java

Run : java HelloWorld

Output is : Hello World 

if you have any question about this program, feel free to message or comment us :
If this information is important to you , and you want to , I will continue writing some more details of programming language, so click on the advertising, available on this page. This is motivate me for writing some more blogs.

Comments