love java programming

My First java programme


This is the very first post in my blog.

All knows this "Hello world" programme.

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

 out put of the programme -
                                  Hello world


There are two types of print statements
      1. System.out.print( );
      2. System.out.println( );


Example -

public class Test{
       public static void main(String args[]){
           System.out.print("Hello world");
           System.out.println(" Good morning ");
           System.out.println("Hello world");
           System.out.println(" Good morning ");
       }
}
     
Out put of the programme -
                                  Hello world Good morning
                                  Hello world
                                  Good morning
         
       
For your more knowledge -

Mainly there are two types of Errors which we can find on a java programme.
                 1.Compile Errors
                 2.Run time Errors

i will write more posts about java.
Hope to see u soon.
thank you





Comments

Popular posts from this blog

Algorithm I

Loops