Translate

Friday, 12 February 2016

Welcome to Java(Print "Hello world code")

Hey guys this is the your first program in java for printing any text.
public class Solution {
   
   public static void main(String []argv)
   {
       System.out.println("Hello World.");
       System.out.println("Hello Java.");
   }

}

No comments:

Working With Java Collections