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"); Sy...